如何从js输出中获取猫鼬的数据?

问题描述 投票:0回答:1

这里有猫鼬问题...我正在博客网站上工作,并尝试使用quilljs。问题是我有js文件的文件输出,这是我的羽毛笔的配置。

  var quill = new Quill('#editor', {
    modules: {
        toolbar: [
            [{ header: [1, 2, false] }],
      ['bold', 'italic', 'underline'],
      ['image', 'code-block']
        ]
    },
    theme: 'snow'
  });
  
  $('#saveArticle').click(function(){
    quill.root.innerHTML; //output
  });

以及如何将输出连接到我的猫鼬。在此之前,我使用了标签。

app.post("/compose", function(req, res){
    const post = new Post({
        content: req.body.output,
    });

    post.save(function(err){
        if (!err){
            res.redirect("/");
        }
      });
});

app.get("/blogs/:postName", function(req, res){
    const requestedPostId = req.params.postId;

    Post.findOne({_id: requestedPostId}, function(err, post){
    res.render("article", {
      content: post.content
    });
  });
});
javascript node.js mongodb mongoose ejs
1个回答
0
投票

要将数据输出发送到服务器,您需要向端点(/compose)发出HTTP(S)请求。执行此操作的browser provides a way,似乎您已经在使用jQuery,因此,可以使用jQuery提供的jQuery.ajax() API。要使用ajax将数据发送到jQuery.ajax()端点,您的代码应如下所示:

/compose
© www.soinside.com 2019 - 2024. All rights reserved.