1

我已经将 CF 结构等转换为 JSON 有一段时间了,一切都很好。尤其是 Coldbox 使这变得非常容易。

但是,我目前正在使用 jQuery 数据表,需要以下面的格式将它传递给 jSON。

我从一组对象开始。

我只希望每个对象中的某些属性进入最终的 JSON 字符串。

我在圈子里跑来跑去,可能完全把我的数据转换成这种格式的 JSON 过于复杂了。任何人都可以提供帮助,或者建议一种简单的方法,我可以做到这一点..

还值得一提的是,我正在冷箱中构建它。冷熔 9.

{ "aaData": [ [ "Test1", "test@test1", "444444444", "<i class=''icon-pencil icon-large'' data-id=''s1''></i>" ],[ "Test2", "test@test2", "555555555", "<i class=''icon-pencil icon-large'' data-id=''s2''></i>" ],[ "Test3", "test@test3", "666666666", "<i class=''icon-pencil icon-large'' data-id=''s3''></i>" ] ]}

非常感谢!

==================================================== ====

这是我需要的游戏代码:

var dataStruct = structNew();
var dataArray = arrayNew(1);
var subsArray = arrayNew(1);
var subs = prc.org.getSubscribers();

for (i=1; i<=arrayLen(subs); i++){
    arrayAppend(subsArray,"#subs[i].getName()#");
    arrayAppend(subsArray,"#subs[i].getEmail()#");
    arrayAppend(subsArray,"#subs[i].getMobile()#");
    arrayAppend(subsArray,"<i class='icon-pencil icon-large' data-id='s#subs[i].getID()#'></i>");
    arrayAppend(dataArray,subsArray);
    arrayClear(subsArray);
};
structInsert(dataStruct,'aaData',dataArray);    
event.renderData('json',dataStruct);
4

1 回答 1

3

好的,所以你有一个包含对象的数组,并且这些对象包含你需要在这个 JSON 化数组中结束的所有属性,是吗?

所以这样做:

create a new array
loop over the array of objects
    create a struct
    put all the values from each object you need to go into the JSON; be mindful to use associative array notation when setting the keys, to perserve the case of the keys
    append the struct to the new array
/loop
serializeJson the new array

我认为没有更简单的方法可以做到这一点。

于 2013-06-14T09:43:27.037 回答