为了账号安全,请及时绑定邮箱和手机立即绑定

如何将带有数组键的对象动态添加到对象字面量?

如何将带有数组键的对象动态添加到对象字面量?

慕尼黑5688855 2021-10-14 13:23:02
我有一个现有的对象文字:var words=[    {"word":"callous","definition":"uncaring","examples": [   {"sentence":"How could you be so callous?"},   {"sentence":"What a callous thing to say!"},   {"sentence":"That showed a callous disregard for the consequences."}]}];我正在尝试动态添加更多对象,如下所示:var obj={};obj.word="nextword";obj.definition ="nextword definition";obj.examples= ???;for (var i = 0; i < nextwordSentencesArray.length; i++) { ??? obj.examples.sentence.push(nextwordSentencesArray[i]);}words.push(obj);我在 -???- 尝试了各种选项,但没有任何效果。感激地收到建议。
查看完整描述

1 回答

?
天涯尽头无女友

TA贡献1831条经验 获得超9个赞

为什么不使用完整的对象进行推送和nextwordSentencesArray与所需属性的映射?


words.push({

    word: "nextword",

    definition: "nextword definition",

    examples: nextwordSentencesArray.map(sentence => ({ sentence }))

});


查看完整回答
反对 回复 2021-10-14
  • 1 回答
  • 0 关注
  • 146 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信