web-dev-qa-db-ja.com

vueスクリプトで「eslint(no-unused-vars)」を修正する方法

Vuejsアプリでサーバーを実行しようとしていますが、eslintメッセージに問題があります。

これは私のJsonファイルです:

 {
   "name": "blog-frontend",
   "version": "0.1.0",
   "private": true,
   "scripts": {
    "serve": "vue-cli-service serve",
    "build": "vue-cli-service build",
    "lint": "vue-cli-service lint"
 },
  "dependencies": {
   "axios": "^0.19.0",
   "core-js": "^3.3.2",
   "vue": "^2.6.10",
   "vue-router": "^3.0.6"
 },
  "devDependencies": {
   "@vue/cli-plugin-babel": "^4.0.0",
   "@vue/cli-plugin-eslint": "^4.0.0",
   "@vue/cli-plugin-router": "^4.0.0",
   "@vue/cli-service": "^4.0.0",
   "babel-eslint": "^10.0.1",
   "eslint": "^5.16.0",
   "eslint-plugin-vue": "^5.0.0",
   "vue-template-compiler": "^2.6.10"
 }
}

これはコンソールのメッセージです:

 ERROR  Failed to compile with 1 errors                                                                             5:11:39 PM
 error  in ./src/views/Home.vue

Module Error (from ./node_modules/eslint-loader/index.js):
error: 'server' is defined but never used (no-unused-vars) at src\views\Home.vue:40:9:
  38 | <script>
  39 | // @ is an alias to /src
> 40 | import {server} from "@/utils/helper";
     |         ^
  41 | import axios from "axios";
  42 |
  43 | export default {


error: 'id' is defined but never used (no-unused-vars) at src\views\Home.vue:58:16:
  56 |         .then(data => (this.posts = data.data));
  57 |     },
> 58 |     deletePost(id) {
     |                ^
  59 |       axios.delete('${sever.baseURL}/blog/delete?postID=${id}').then(data => {
  60 |         console.log(data);
  61 |         window.location.reload();


2 errors found.

 @ ./src/router.js 3:0-41 19:15-28
 @ ./src/main.js
 @ multi (webpack)-dev-server/client?http://192.168.1.152:8080/sockjs-node (webpack)/hot/dev-server.js ./src/main.js

Home.vue

<script>
 // @ is an alias to /src
 import {server} from "@/utils/helper";
 import axios from "axios";

export default {
 data() {
  return {
   posts: []
 };
},
created() {
 this.fetchPosts();
},
methosd: {
 fetchPosts() {
  axios
    .get('${server.baseURL}/blog/posts')
    .then(data => (this.posts = data.data));
},
deletePost(id) {
  axios.delete('${sever.baseURL}/blog/delete?postID=${id}').then(data => {
    console.log(data);
    window.location.reload();
   });
  }
 }
};
</script>

helper.js

export const server = {
 baseURL: 'http:localhost:3000'
}

main.js

import Vue from 'vue'
import App from './App.vue'
import router from './router'

Vue.config.productionTip = false

new Vue({
 router,
  render: h => h(App)
}).$mount('#app')

私は十分な情報を期待しています、そしてあなたはそれらを修正するのを手伝うことができます

2
Israel Omar

文字列テンプレートを使用して、以下のようにURLを正しく作成します。

axios.delete(`${server.baseURL}/blog/delete?postID=${id}`).then(data => {

次に、serverおよびidが使用され、エラーが修正されます。

1
Antonio