我正在使用“ Vue.http”发出http请求,但未发送数据。
在服务器端,控制器方法已命中,但请求为空。
console.log(email, username, password) // NOT EMPTY
Vue.http({
url: 'auth/signup',
method: 'POST',
data: {
email: email,
username: username,
password: password
}
})
“数据:”是否有问题?
答案 0 :(得分:1)
这有效:
Vue.http.post('auth/signup', {
email: email,
username: username,
password: password
})
我必须使用较旧的“ Vue.http”语法。