将 json 数据加载到 editorjs
load json data into editorjs
在我的网页上,我有一个editorjs。用户输入信息,它被保存到我的mongodb(如JSON)。如果我想编辑信息,我会尝试从数据库中获取该信息并将其加载回 editorjs。我尝试了几种不同的方法; none 其中正在运行。这是我的 editorjs.js 文件中的内容:
const description = data.description; // My JSON that was saved.
console.log(description); // So far so good, console logs just what should be expected.
const editor = new EditorJS({
holderID: 'editorjs',
tools: {
// toolbar configuration here
},
data: description // This doesn't work, however if I copy and paste
// the data that the console logged from earlier,
// it loads correctly into the editorjs
});
// My newest attempt here
editor.isReady.then(() => {
console.log('ok'); // Works so far
console.log(description); // Also works, logging the same information as earlier
editor.render({
description
});
}).catch((err) => {
console.log(err);
});
我乐于接受建议。
我在评论中说了这个,但我会在这里说,以便其他人在谈到这个时可以更清楚地看到它post。他缺少 JSON.parse()
来解析 JSON。
在我的网页上,我有一个editorjs。用户输入信息,它被保存到我的mongodb(如JSON)。如果我想编辑信息,我会尝试从数据库中获取该信息并将其加载回 editorjs。我尝试了几种不同的方法; none 其中正在运行。这是我的 editorjs.js 文件中的内容:
const description = data.description; // My JSON that was saved.
console.log(description); // So far so good, console logs just what should be expected.
const editor = new EditorJS({
holderID: 'editorjs',
tools: {
// toolbar configuration here
},
data: description // This doesn't work, however if I copy and paste
// the data that the console logged from earlier,
// it loads correctly into the editorjs
});
// My newest attempt here
editor.isReady.then(() => {
console.log('ok'); // Works so far
console.log(description); // Also works, logging the same information as earlier
editor.render({
description
});
}).catch((err) => {
console.log(err);
});
我乐于接受建议。
我在评论中说了这个,但我会在这里说,以便其他人在谈到这个时可以更清楚地看到它post。他缺少 JSON.parse()
来解析 JSON。