我正在使用 NUXT.js,作为 nuxt/auth 模块。
我可以调用我的 API,但我无法获取数据:
我的 nuxt 方法:
try {
let response = await this.$auth.loginWith('local', { data: this.login })
console.log(response)
} catch (err) {
console.log(err)
}
在登录数据中,我有密码和电子邮件。
我的 nuxt.config.js :
auth: {
strategies: {
local: {
endpoints: {
login: {
url: API_URL_LOGIN,
method: 'post'
},
logout: {
url: API_URL_LOGOUT,
method: 'post'
},
user: {
url: API_URL_USER,
method: 'post'
}
}
}
},
},
在我的 PHP API 中,我正在尝试收集电子邮件和密码数据,但是......我在 $_POST(或 $_GET)中没有任何内容
<?php
header('Access-Control-Allow-Origin: *');
header('Access-Control-Allow-Headers: Content-Type, X-Requested-With, Authorization');
header('Access-Control-Allow-Methods: POST, GET, OPTIONS, DELETE, PUT');
header('Content-Type: application/json;charset=utf-8');
$return['post'] = $_POST;
$return['get'] = $_GET;
echo json_encode($return);
?>
因此,使用我的 console.log(response),我有:
Config:
baseURL: "http://localhost:3000/"
data: "{"username":"vincent.blondaux@gmail.com","password":"admin"}"
headers: {Accept: "application/json, text/plain, */*", Content-Type: "application/json;charset=utf-8"}
method: "post"
url: "...url.../login.php"
...
data:
get: []
post: []
有任何想法吗?非常感谢!文森特