0
如何將數據從Quilljs(前端)發送到node.js(後端)。我試圖找到所有的例子,但沒有什麼與後端有關。我從Quilljs的文檔中讀取了信息,但我仍然沒有真正瞭解它,或者你們可以向我解釋這個概念。將數據從Quilljs發送到Node.js
下面的代碼是我真正想到的,但我不知道如何從前端獲取數據。
Fontend
<form action="p_comment" method="post">
<div id="editor">
</div>
<button type="submit">Post</button>
</form>
後端
router.post('/p_comment', function(req, res, next) {
});