Nuxt.jsで個人的にアプリの開発をしています。
axiosを使用してAPI通信をしており、CROS制約回避の為、proxyを使用しているのですが複数のサーバーにリクエストを送る際のproxyの設定方法がよくわかりません。
ネットで調べてみるのですが、解決できそうな記事が見当たらずこちらで質問させていただきました。
#実現したいこと
データベースはDynamoDBを使用しています。
投稿内容をDynamoDBに登録そして、データベースから取得したいです。
javascript
1 signUp(){ 2 this.$axios.$get('/signUp', 3 { 4 m_users: { 5 user_name: this.username, 6 mailaddress: this.mailaddress, 7 password: this.password 8 } 9 }) 10 .then(res => { 11 console.log(res); 12 }); 13 }, 14 async getList() { 15 await this.$axios.$get('/api') 16 .then(res => { 17 console.log(res); 18 }); 19 } 20 async addPost() { 21 await this.$axios.post('/post', 22 { 23 t_items: { 24 item_id: this.nextId, 25 shop_name: this.shop, 26 item_name: this.name, 27 item_price: this.price, 28 item_unit: this.unit, 29 post_date: date 30 } 31 } 32 ) 33 .then(res => { 34 console.log(res); 35 })
javascript
1 proxy: { 2 '/api': { 3 target: 'URL', 4 pathRewrite: { 5 '^/api': '' 6 } 7 }, 8 '/signUp': { 9 target: 'URL', 10 pathRewrite: { 11 '^/api': '' 12 } 13 }, 14 '/post': { 15 target: 'URL', 16 pathRewrite: { 17 '^/api': '' 18 } 19 } 20 }, 21 axios: { 22 prefix: '/api', 23 },
これで合っておりますか?
教えていただけると幸いです????♂️
回答1件
あなたの回答
tips
プレビュー