json 如何匯入 SQL? (quill編輯器)
我用了一個編輯器叫quill
var quill = new Quill('#editor', {
modules: {
toolbar: toolbarOptions
},
placeholder: 'Compose an epic...',
theme: 'snow'
});
var form = document.querySelector('form');
form.onsubmit = function() {
// Populate hidden form on submit
var content = document.querySelector('input[name=content]');
content.value = JSON.stringify(quill.getContents());
console.log("Submitted", $(form).serialize(), $(form).serializeArray());
alert('Open the console to see the submit data!')
return false;
};
我想把它content的內容丟到sql
但是這是json格式。。。
0: {name: "title", value: ""}
1: name: "content"value: "{"ops":[{"insert":"srgsegsrehreshrseh"},{"attributes":{"blockquote":true},"insert":"\n"}]}"__proto__: Object
2: {name: "tag", value: ""}
3: {name: "password", value: ""}length: 4__proto__: Array(0)
我title, tag, password 都是用php的POST去接值然後匯入到SQL
但唯獨content他是直接丟json.....那我要怎麼轉換才對?因為我真正需要的是html而不是json,但是找了一下官方改掉getHtml的API。。。。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
沒人回答就自己回答...已經解決!