gpt4 book ai didi

javascript - 如何在Sproutcore中串联两种SC.RecordArray类型?

转载 作者:行者123 更新时间:2023-12-03 13:38:30 25 4
gpt4 key购买 nike

以下是代码:

        queryTree = SC.Query.local('Tree.Category',
"categoryId = {categoryId}", {
categoryId: this.get('guid'),
orderBy: "name ASC"
});
queryNote = SC.Query.local('Tree.Note',
"categoryId = {categoryId}", {
categoryId: this.get('guid'),
orderBy: "name ASC"
});
var arrayCategory = Tree.store.find(queryTree);
var arrayNote = Tree.store.find(queryNote);
//Concatenate arrayCategory to arrayNote

我想返回一个新的记录数组,将结果附加到arrayCategory和arrayNote。我浏览了文档,但似乎没有连接函数。

最佳答案

这应该工作得很好:

var result = Tree.store.find(SC.Query.local([Tree.Category, Tree.Note],
"categoryId = {categoryId}", {
categoryId: this.get('guid'),
orderBy: "name ASC"
}));

要连接两个数组,可以使用pushObjects方法,但它不能与SC.Query的结果一起使用,因为它返回不可编辑的SC.RecordArray(因为添加或删除记录时会自动更新)。

关于javascript - 如何在Sproutcore中串联两种SC.RecordArray类型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13739900/

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