javascript - Object to json string in node.js - Stack Overflow

I have a problem with node.js to object to json stringvar chat = {};chat.messages = [];chat.messages[

I have a problem with node.js to object to json string

var chat = {};
chat.messages = [];
chat.messages['en'] = [];
chat.messages['fr'] = [];
console.log(chat.messages)
console.log(JSON.stringify(chat.messages));

I got

[ en: [], fr: [] ]
[]

I don't know why this is not correctly convert

I have a problem with node.js to object to json string

var chat = {};
chat.messages = [];
chat.messages['en'] = [];
chat.messages['fr'] = [];
console.log(chat.messages)
console.log(JSON.stringify(chat.messages));

I got

[ en: [], fr: [] ]
[]

I don't know why this is not correctly convert

Share Improve this question edited Dec 8, 2012 at 23:13 Musa 97.8k17 gold badges122 silver badges143 bronze badges asked Dec 8, 2012 at 23:07 AjouveAjouve 10.1k27 gold badges94 silver badges154 bronze badges 1
  • I just took a look in my crystal ball, and it says it's not correctly converted because you did'nt feed it the right data ? – adeneo Commented Dec 8, 2012 at 23:09
Add a ment  | 

1 Answer 1

Reset to default 9

On this line, you initialize chat.messages as an empty array:

chat.messages = [];

Here, you use it as an object:

chat.messages['en'] = [];
chat.messages['fr'] = [];

These lines actually set properties on the array instance. It's curious that Node would include these properties in the normal .toString() result (i.e., that you'd see the set properties as elements of the array on console.log(chat.messages).


In any case, to fix, declare chat.messages as an object:

chat.messages = {};
chat.messages['en'] = [];
chat.messages['fr'] = [];

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743697242a4491959.html

相关推荐

  • javascript - Object to json string in node.js - Stack Overflow

    I have a problem with node.js to object to json stringvar chat = {};chat.messages = [];chat.messages[

    23小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信