【Nuxt.js】API連携での「connect ECONNREFUSED 127.0.0.1:80」エラーを解決したい
状況
laravel apiとnuxtの連携テストで以下エラーが出て、解消できない
connect ECONNREFUSED 127.0.0.1:80
質問
PostmanでAPIリクエストしたところ、データは問題なく返ってきているので、nuxt側の設定が間違っている認識なのですが、解決方法を見つけ出せず、、
お力をお貸しいただけないでしょうか。。
よろしくお願い致しますmm
ファイル設定
src/routes/api.php
php
1<?php 2 3use Illuminate\Http\Request; 4use Illuminate\Support\Facades\Route; 5 6/* 7|-------------------------------------------------------------------------- 8| API Routes 9|-------------------------------------------------------------------------- 10| 11| Here is where you can register API routes for your application. These 12| routes are loaded by the RouteServiceProvider within a group which 13| is assigned the "api" middleware group. Enjoy building your API! 14| 15*/ 16 17Route::middleware('auth:api')->get('/user', function (Request $request) { 18 return $request->user(); 19}); 20 21Route::get('test', function() { 22 return response()->json(['name' => '山田太郎', 'gender' => '男','mail' => 'yamada@test.com']); 23}); 24
nuxt.config.js
js
1export default { 2 // Global page headers: https://go.nuxtjs.dev/config-head 3 head: { 4 title: 'sound-matching', 5 htmlAttrs: { 6 lang: 'en' 7 }, 8 meta: [ 9 { charset: 'utf-8' }, 10 { name: 'viewport', content: 'width=device-width, initial-scale=1' }, 11 { hid: 'description', name: 'description', content: '' } 12 ], 13 link: [ 14 { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' } 15 ] 16 }, 17 18 // Global CSS: https://go.nuxtjs.dev/config-css 19 css: [ 20 ], 21 22 // Plugins to run before rendering page: https://go.nuxtjs.dev/config-plugins 23 plugins: [ 24 ], 25 26 // Auto import components: https://go.nuxtjs.dev/config-components 27 components: true, 28 29 // Modules for dev and build (recommended): https://go.nuxtjs.dev/config-modules 30 buildModules: [ 31 ], 32 33 // Modules: https://go.nuxtjs.dev/config-modules 34 modules: [ 35 '@nuxtjs/axios', 36 '@nuxtjs/proxy' 37 ], 38 axios: { 39 baseURL: 'http://localhost:3000' 40 }, 41 proxy: { 42 '/api': 'http://sound-matching_api_app_1:8000/api/test', 43 }, 44 45 // Build Configuration: https://go.nuxtjs.dev/config-build 46 build: { 47 } 48} 49
pages/index.vue
vue
1<template> 2<div class="wrapper"> 3 <Header /> 4 <main class="main"> 5 <nav class="side-bar"> 6 <h3>感情アイコン</h3> 7 <ul class="emotion"> 8 <li>喜</li> 9 <li>怒</li> 10 <li>哀</li> 11 <li>楽</li> 12 </ul> 13 <h3>ジャンル</h3> 14 <ul class="genre"> 15 <li>ジャンル名</li> 16 <li>ジャンル名</li> 17 <li>ジャンル名</li> 18 <li>ジャンル名</li> 19 <li>ジャンル名</li> 20 </ul> 21 </nav> 22 <div class="content"> 23 <p>{{data}}</p> 24 <p>音声ファイル</p> 25 <p>音声ファイル</p> 26 <p>音声ファイル</p> 27 <p>音声ファイル</p> 28 <p>音声ファイル</p> 29 </div> 30 <div> 31 <h1>Laravel & Nuxt.js</h1> 32 <h2>URL</h2> 33 {{ url }} 34 <h2>Result</h2> 35 {{ message }} 36 </div> 37 </main> 38</div> 39</template> 40 41<script> 42import Header from "@/components/header.vue"; 43 44export default { 45 components: { 46 Header, 47 }, 48 async asyncData({app}) { 49 const url = 'http://localhost/api/test' //Laravel の API URI 50 const message = await app.$axios.$get(url) 51 return { 52 url, 53 message 54 }; 55 } 56}; 57</script> 58 59<style scoped> 60/* * { 61 outline: solid 1px #000; 62} */ 63/* メイン */ 64.main { 65 display: flex; 66} 67/* サイドバー */ 68.side-bar { 69 border: solid 1px; 70 padding: 10px; 71} 72.side-bar ul { 73 list-style: none; 74 padding: 0; 75} 76.side-bar li { 77 padding: 10px; 78} 79.emotion li { 80 padding-left: 45px; 81} 82/* メインコンテンツ */ 83.content { 84 display: flex; 85 padding: 10px; 86} 87.content p { 88 padding: 10px; 89} 90</style>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/06/04 15:54 編集
2021/06/05 11:56