已部署 Laravel sanctum 应用程序不再工作
Deployed Laravel sanctum application not working anymore
我使用 sanctum 进行 vue Axios 操作。我部署到我的共享主机,我在 chrome 控制台中收到此错误:
GET http://foo.xyz/city 401 (Unauthorized)
bootstrap.js :
window._ = require('lodash');
try {
window.Popper = require('popper.js').default;
window.$ = window.jQuery = require('jquery');
require('bootstrap');
} catch (e) {}
window.axios.defaults.withCredentials = true;
window.axios = require('axios');
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
Axios 获取:
getCity() {
axios.get('/api/city')
.then((response) => {
this.cities= response.data;
})
.catch(function (error) {
console.log(error);
});
},
当我将这个项目部署到我的共享主机时,一切都在我的本地主机上工作,但没有任何效果,所以我如何才能 运行 在我的共享主机中做到这一点?
我在 .env
中添加了以下代码
SANCTUM_STATEFUL_DOMAINS="foo.xyz"
问题解决了。
PS:
foo.xyz
is not the actual domain, I gave a different domain for security reasons.
我使用 sanctum 进行 vue Axios 操作。我部署到我的共享主机,我在 chrome 控制台中收到此错误:
GET http://foo.xyz/city 401 (Unauthorized)
bootstrap.js :
window._ = require('lodash');
try {
window.Popper = require('popper.js').default;
window.$ = window.jQuery = require('jquery');
require('bootstrap');
} catch (e) {}
window.axios.defaults.withCredentials = true;
window.axios = require('axios');
window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest';
Axios 获取:
getCity() {
axios.get('/api/city')
.then((response) => {
this.cities= response.data;
})
.catch(function (error) {
console.log(error);
});
},
当我将这个项目部署到我的共享主机时,一切都在我的本地主机上工作,但没有任何效果,所以我如何才能 运行 在我的共享主机中做到这一点?
我在 .env
SANCTUM_STATEFUL_DOMAINS="foo.xyz"
问题解决了。
PS:
foo.xyz
is not the actual domain, I gave a different domain for security reasons.