从Angular6发送JSON并在PHP Rest服务中接收?

时间:2018-12-02 00:18:05

标签: php json typescript post angular6

我有一个Angular6应用,我想用PHP将JSON发送到REST api,然后获取所有字段以进行插入查询。

这是我的角度功能:

createUser(user: User) {
        const jsonParms = JSON.stringify(user);
        this.http.post('http://localhost:80/angular/newUser.php', jsonParms).pipe(map(data => {
            console.log(data.json());
            return data.json();
        })).subscribe();
    }

我如何在php中获取JSON并提取字段以在mysql中插入?

0 个答案:

没有答案