我有一个在我的nuxt服务器之前启动的Symfony API,我想调用该symfony API的发布请求,就是这样:
Application.with_pending_docs.each { |app| p app.pending_documents }
,创建一个新用户。
在https://127.0.0.1:8000/user
文件中的nuxt vue上调用
register.vue
这是我的methods: {
async register() {
try {
await this.$axios.post('user', {
username: this.username,
pseudo: "zar",
email: this.email,
password: this.password
})
this.$router.push('/')
} catch (e) {
this.error = e.response.data.message
}
}
}
上的baseUrl
nuxt.config.js
因此,当我尝试注册时,会在控制台上收到此错误:
build: {
baseUrl: "http://127.0.0.1:8000/v2.0"
},
我应该怎么做才能使我的nuxt请求与symfony API正常工作而不会出现问题?