发送发布请求,但服务器接收到空数据

时间:2018-12-02 15:21:42

标签: vuejs2

我正在使用“ Vue.http”发出http请求,但未发送数据。

在服务器端,控制器方法已命中,但请求为空。

   console.log(email, username, password) // NOT EMPTY
   Vue.http({
        url: 'auth/signup',
        method: 'POST',
        data: {
            email: email,
            username: username,
            password: password
        }
    })

“数据:”是否有问题?

1 个答案:

答案 0 :(得分:1)

这有效:

Vue.http.post('auth/signup', {
        email: email,
        username: username,
        password: password
    })

我必须使用较旧的“ Vue.http”语法。

相关问题