javascript - insert a js variable into a json object -


मेरे पास एक वैध json ऑब्जेक्ट है जिसे list_to_book_for नाम दिया गया है:

  {"Fold1-key1": {"name": "van antwerpen"}, "fold2-key2": {"name": "delporte"}, "fold3-key3": {"name": "Lallemand"}}   

मैं इस ऑब्जेक्ट में मेरी वैरिएबल की सामग्री जोड़ना चाहूंगा:

  "fold1": {"name": "बहुत पुस्तक" "आइटम": {}},   

मैं आइटम में वैरिएबल सम्मिलित करना चाहता हूं, संभव है?

यह संभव है, बिल्कुल

  var x = 'आपके आइटम'; Var obj = {fold1: {नाम: "बहुत पुस्तक के लिए", आइटम: {}}}; Obj.fold1.items = x;    

Comments

Popular posts from this blog

ios - Adding an SKSpriteNode to SKScene from a child SKSpriteNode -

Matlab transpose a table vector -

c# - Textbox not clickable but editable -