发出http.post以角度4工作的问题

时间:2018-04-14 19:41:29

标签: php json angular http

代码:

this.http.post<CommentData>(submitScript, {path:path, author:authorInput, comment:commentInput}).subscribe (
        data => {
            let json:CommentData = {path:path, author:authorInput, comment:commentInput};
            data = json;
        },
        err => {
            console.log("Error: Post failed");
        }
    );

因此,目的是将路径,authorinput和commentinput发布到php处理程序文件以转储到数据库中。我遇到的问题是只是命中错误块。所以我假设我在输入数据或处理数据时出错了,但我不知道是什么

有没有人对这个问题有任何想法?

0 个答案:

没有答案