web-dev-qa-db-ja.com

開発中にVUE-CLIでコンソールログを有効にする方法

こんにちはコミュニティ。

私は、ここで行っていることのいくつかの動作を理解するために、メソッドでいくつかのVueJの開発を学習している間にconsole.log('whatever')を理解する方法を見つけようとしています。

私はすでにここで尋ねられたいくつかの質問があることを理解し、私はこれを理解するためにeslintのドキュメントにスコープを絞りました...私は何をすべきか実際に理解できません。

これは私の方法です:

methods: {
            submitData() {
                this.$http.post('https://vue-testing-8a2de.firebaseio.com/data.json',this.user)
                 .then(response => {
                     console.log(response);
                 }, error => {
                     console.log(error)
                 })
            }
        }

これはESLINTのエラーです:

Failed to compile.

./src/App.vue
Module Error (from ./node_modules/eslint-loader/index.js):
error: Unexpected console statement (no-console) at src/App.vue:35:22:
  33 |                 this.$http.post('https://vue-testing-8a2de.firebaseio.com/data.json',this.user)
  34 |                  .then(response => {
> 35 |                      console.log(response);
     |                      ^
  36 |                  }, error => {
  37 |                      console.log(error)
  38 |                  })


error: Unexpected console statement (no-console) at src/App.vue:37:22:
  35 |                      console.log(response);
  36 |                  }, error => {
> 37 |                      console.log(error)
     |                      ^
  38 |                  })
  39 |             }
  40 |         }


2 errors found.

だから...私はこのウェブサイトを調べました:https://eslint.org/docs/rules/no-console

console.log...の前の前の行に/*eslint no-console: "error"*/を付けてコメントしてみましたが、うまくいきません。

親愛なる、これについて私に連絡したら、私もこれをやったことがないので、JSONルールをいじくる必要がある場合に備えて、段階的に私を案内してくれませんか?

Webstormでvue-cliを使用しています。

前もって感謝します!

2
Aliosh r

1 package.jsonを編集する

2次に「ルール」を見つけます:{}

3この「ルール」に変更します:{"no-console":0}

4 Vueサーバーをオンにして、オフにしてからもう一度実行すると、問題が発生します。

0