Fo Ts and Nuxt js

问题描述 投票:0回答:1

我在后端使用“ foal ts”,并且正确设置了端点,因此我可以在前端进行身份验证并获取“ Nuxt js”应用程序的令牌我用邮递员测试了它,一切都很完美我的“ nuxtJS”应用程序也可以正确验证但是,当我尝试像在邮递员中一样获取/ api / note时,我收到了错误的请求,

enter image description here

enter image description here//在nuxt组件安装方法中:

this.$axios.get('/api/notes',{data:{email:'[email protected]'}})
.then(res => {return res.data})
.catch(err => {return err.message})  

怎么了?? !!!!后端的一些屏幕截图=== >>>

enter image description here

typescript rest api axios nuxt.js
1个回答
0
投票

我通常无法通过get请求发送正文,您必须将它们作为查询参数发送。

© www.soinside.com 2019 - 2024. All rights reserved.