gpt4 book ai didi

javascript - Rally:来自多个表的字段

转载 作者:行者123 更新时间:2023-11-30 05:53:23 27 4
gpt4 key购买 nike

我正在使用 Rally WSAPI 2.0p5 和 JSON 返回

我希望在单个响应中从多个表中获取字段。这可能吗?例如,我正在尝试获取用户故事并在同一数据响应中获取 Iteration.State。我知道可以做客户端,如果这是唯一的方法。有人可以提供并举例说明我如何处理构建表(数组)的异步响应。

最佳答案

只需将 State 添加到包含在您的提取中的属性列表中。 Rally 的 WSAPI 将填充子对象的值,即使被查询的主要类型没有该字段也是如此。

launch: function() { 
var userStories = Ext.create('Rally.data.WsapiDataStore', {
model: 'HierarchicalRequirement',
fetch: ['Iteration', 'State'],
autoLoad: true,
filters: [
{
property: 'Iteration.State',
value: 'Accepted'
}
],
limit: 10000,
listeners: { load: this._onDataLoaded, scope: this }
});
}

关于javascript - Rally:来自多个表的字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13402811/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com