我是 emberjs 的新手,目前处于学习阶段。我已经使用 ember data 和 localstorage-adapter 将表单数据保存在 localstorage 中。现在我想要 json 对象中的数据。谁能解释我如何在 json 对象中获取本地存储数据?
我正在使用以下代码创建记录:
Grid.ModalModel.createRecord({
fname: fname, lname: lname, email: email,
contactno: contactno, gendertype: gendertype, contactype: contactype
});
this.get('store').commit();
数据保存在浏览器的本地存储中。现在我希望控制器中的 json 对象中的数据在应用程序中进一步使用。