Vue warn]を解決する。Vueの警告]: Error in created hook: "ReferenceError: axios is not defined "問題を解決する。
2022-02-28 01:16:43
axiosがvueで定義されていないことを正しく解決する。
axiosはすでにインストールされています
vueを学習中、フロントエンドがバックエンドのデータを要求すると、ブラウザで次のようなエラーが発生します。
main.jsの下
import VueAxios from 'vue-axios';
import axios from 'axios';
使用したnpmのサンプルのコードは以下の通りです。
created(){
const _this = this
axios.get('http://localhost:8081/book/findall').then(function (resp) {
_this.books = resp.data;
})
}
}
webpack-internal:///. /node_modules/vue/dist/vue.esm.js:629 [Vue warn]: Error in created hook: "ReferenceError: axios is not defined"
found in
---> <Book> at src/components/Book.vue
<App> at src/App.vue
<Root>
warn @ webpack-internal:///. /node_modules/vue/dist/vue.esm.js:629
リクエスト時に以下のようなブラウザエラーが発生します。
import VueAxios from 'vue-axios';
import axios from 'axios';
Vue.prototype.$axios = axios;
created(){
const _this = this
this.$axios.get('http://localhost:8081/book/findall').then(function (resp) {
_this.books = resp.data;
})
}
}
ソリューション
main.jsの下で、次のように変更します。
import VueAxios from 'vue-axios';
import axios from 'axios';
Vue.prototype.$axios = axios;
例のコードは次のように変更されました。
created(){
const _this = this
this.$axios.get('http://localhost:8081/book/findall').then(function (resp) {
_this.books = resp.data;
})
}
}
変更後、この問題を解決するには、次のように実行します。
関連
-
undefinedvueがエラーで動作する getaddrinfo ENOTFOUND localhost
-
「未定義のプロパティ'length'を読み取れない」エラー処理
-
マウントされたフックでのエラー: "TypeError: TypeError: Cannot read property 'XXXXX' of undefined" マウントされたフックにエラーが発生しました。
-
エラーを解決する。モジュール 'chalk' が見つかりません。
-
モジュールのビルドに失敗しました。Error: ENOENT: no such file or directory
-
Uncaught (in promise)の解決策、考えられる原因
-
vueコンソールがエラーUncaughtを報告する(promiseの場合)
-
Vueプロジェクトのエラーです。Uncaught (in promise) Error: ネットワークエラー
-
VUE ストリングスプライシング 各種スプライシング
-
this.setの正しい使い方
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
VueのVue.set()でCannot convert undefined or null to objectというエラーが報告される。
-
Vue using seven cows cloud upload error o.upload.addEventListener is not function and other error reporting issues.
-
require(src) は警告を報告するCritical dependency: 依存関係の要求は式である
-
ウィンドウやドキュメントがNuxtで定義されていない問題のまとめ
-
vueのインストール・イメージは、https://registry.npm.taobao.org/cnpmへのエラー・リクエストに失敗したと報告します。理由: getaddrinfo ENOTFOUND regis
-
Uncaught ReferenceError: exports は vue プロジェクトで定義されていません。
-
Uncaught (in promise) TypeError: 未定義のVueエラーのプロパティ'theData'を読み取れない
-
npm install エラー "Unexpected end of JSON input while parsing near" は解決されました。
-
Vue+springboot+websocketベースのWeChatウェブチャットルーム(プライベートおよびグループチャット機能)の短い模造品(オンラインプレビュー可)
-
vueの@のエイリアスがジャンプを認識しない