我有两家商店,我想根据其他商店对一家商店进行排序。
Store1存储模型:
fields: [
{
name: 'id',
type: 'string'
},
{
name: 'name',
type: 'string'
}
]
Store2商店模式:
fields: [
{
name: 'id',
type: 'string'
},
{
name: 'subject',
type: 'string'
}
]
我按主题对store2进行排序,我想根据store2的id对store1进行排序。 我怎么能这样做?