如何循环 &将值对添加到 JSON 对象?
使用 jQuery SelectBox 插件 我尝试创建一个如下所示的 JSON 对象,其中 < code>'value' 和 'name'
是选择框的值对:
'Opt Group 1': {
'value': 'name',
'value': 'name',
'value': 'name',
'value': 'name',
'value': 'name'
},
这样当我循环数据时,我会将更多数据推送到数组的末尾。目前,为了仅显示 'name'
,我使用以下内容:
var jsonObj = [];
for(var i=0; i<data.length; i++){
jsonObj.push(data[i].name);
}
console.log(jsonObj);
据我了解,JavaScript 似乎不喜欢使用变量作为标识符,即我不能这样做:jsonObj.push({data[i].id:data[i].name});
我如何创建我需要的 JSON 对象,以便让选择框根据需要工作?
Using the jQuery SelectBox plugin I'm trying to create a JSON object which looks as follows, where 'value'
and 'name'
are pairs of values for a select box:
'Opt Group 1': {
'value': 'name',
'value': 'name',
'value': 'name',
'value': 'name',
'value': 'name'
},
So that when I loop through my data, I push more data to the end of the array. Currently, to display the 'name'
only, I use the following:
var jsonObj = [];
for(var i=0; i<data.length; i++){
jsonObj.push(data[i].name);
}
console.log(jsonObj);
So far as I understand it, JavaScript doesn't seem to like using variables as identifiers, i.e. I can't do: jsonObj.push({data[i].id:data[i].name});
How might I go about creating the kind of JSON object I need, in order to get the Select Box working as needed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您在数组和对象之间造成了很多混淆。您可以这样做:
通过这种方式,您将拥有一个对象,该对象具有“data”中包含的“id”作为属性,以及这些属性的值作为相对名称
You are making a lot of confusion between arrays and objects i think. You could do:
in this way you would have an object that has as properties the "id" contained in "data" and as values of those properties the relative names