请告诉我如何在具有某个键的对象内设置对象。
var item = {};
item[inputItem.text] : sessionStorage.getItem(inputItem.text);
我收到错误。 :在我的给定行中 当我把它当作字符串
item[inputItem.text] = sessionStorage.getItem(inputItem.text);
答案 0 :(得分:0)
如果存储的项目是JSON,正如您的评论所暗示的那样,JSON.parse()
会将其变为JavaScript对象:
item[inputItem.text] = JSON.parse( sessionStorage.getItem(inputItem.text) );