您可以使用contains
运算符:
Ext.create('Rally.data.WsapiDataStore', {
model: 'UserStory',
fetch: ['FormattedID','Name'],
autoLoad: true,
filters:[
{
property: 'Name',
operator: 'contains',
value: "Mobile"
}
],
listeners: {
load: this._onDataLoaded,
scope: this
}
});