我掌握了 2.0 的窍门,但有点卡在看似简单的东西上。
基本上,我为我的团队创建了一个新的应用程序(感谢大家的帮助)。我认为有一种方法可以将消息添加到仪表板会很酷。
我决定完成此任务的最简单方法是创建一个故事,然后在我的代码中简单地查询那个故事,获取描述并在应用程序中显示它。听起来很容易对吧?
我有一点时间很简单,抓住描述字段并显示它。我知道这听起来很奇怪,但它看起来很复杂。我试过这种方式
showMessage: function (message) {
debugger;
this.add({
xtype: 'label',
html: message
});
},
getMessage: function () {
var defectStore = Ext.create('Rally.data.WsapiDataStore', {
model: 'UserStory',
fetch: ['Description'],
filters: [{
property: 'FormattedID',
operator: '=',
value: 'US13258'
}],
autoLoad: true,
listeners: {
load: function (store, records) {
debugger;
if (records)
return records[0].get("Description");
}
}
});
},
但似乎陷入了事件意大利面。当然有更简单的方法:)
只想去获取一个特定的故事描述字段......