0

単一のクエリを使用して複数の「モデル」をクエリする方法はありますか? _Type を使用したルックバック クエリに似ています: {'$in': ['HierarchicalRequirement','Defect']}

                Ext.create('Rally.data.WsapiDataStore', {
                    model: ['UserStory','Defect'], //this does NOT work
                    context: context,
                    autoLoad: true,
                    filters: newFilter,
                    fetch: 'Name,FormattedID,AcceptedDate,ScheduleState,PlanEstimate,KanbanState',
                sorters: [
                          {
                              property: 'AcceptedDate',
                              direction: 'ASC'
                          }
                    ],
                    listeners: {
                    load: this._onDataLoaded,
                    scope: this
                }
                });
4

1 に答える 1

0

これは現在、RUI SDK ではサポートされていませんが、将来的にはサポートされる予定です。

于 2013-01-19T16:28:48.813 に答える