ホームページ > 記事 > ウェブフロントエンド > vue インスタンスのメソッドとデータの詳細な説明
この記事は主に Vue インスタンスのメソッドとデータに関する情報を紹介するもので、必要な方は参考にしていただければ幸いです。
1.vm.$set
問題の説明:
データをループせずにリストデータに showMore 属性を追加し、moreFun でこの新しい属性の値を変更し、双方向バインディングを実現するにはどうすればよいですか?
<template> <p id="app"> <p class="demo"> <ul> <template v-for="(v,index) in list"> <li>{{v.name}}</li> <p v-show="!v.showMore"> <button @click="moreFun(index)">展示更多</button> </p> </template> </ul> </p> </p> </template> <script> export default { name: 'app', data() { return { list: [{ name: '小颖' }, { name: '仔仔' }, { name: '黑妞' }, { name: '土豆' }] } }, methods: { moreFun(index) { console.log(this.list); } } } </script> <style> #app { font-family: 'Avenir', Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } </style>
最初、Xiaoying はその方法がわからず、
<p v-show="!v.showMore"> <button @click="moreFun(index)">展示更多</button> </p>
このコードは間違いなくエラーを報告すると思っていましたが、Xiaoying がそれを書いてみると、そうではないことがわかりました。ハンサムな男が私に、vue の vm.$set を見てくださいと言いました。それを読んだ後、Xiaoying は moreFun メソッドを次のように書きました:
moreFun(index) { this.$set(this.list[index], 'showMore', true); console.log(this.list); }
そして、Xiaoying が望んでいた結果が達成されました。当時 Xiaoying が遭遇した問題は次のようなものでした。
<script> export default { name: 'app', data() { return { list: [{ name: '小颖' }, { name: '仔仔' }, { name: '黑妞' }, { name: '土豆' }] } }, mounted: function() { this.list.forEach(function(element, index) { element.showMore = false; }); }, methods: { moreFun(index) { this.list[index].showMore = true; console.log(this.list); } } } </script>
- {{v.name}}
<p v-show="!v.showMore"> <button @click="moreFun(index)">展示更多</button> </p>
問題: moreFun メソッドを実行した後、リストの showMore 属性の値が true になったにもかかわらず、
<p v-show="!v.showMore"> <button @click="moreFun(index)">展示更多</button> </p>
ボタン「Show More」が表示されたままです。インスタンスの作成後にインスタンスに新しいプロパティを追加しても、ビューの更新はトリガーされないためです。
その後、Xiaoying が showMore をリストに直接追加しました。その後は問題ありませんでした。考えてみれば、vm.$set で解決できます。
2.vm.$watch
使用法:
Vue インスタンスの変更に関する式または計算されたプロパティ関数を観察します。コールバック関数によって取得されるパラメータは、新しい値と古い値です。この式は教師付きキー パスのみを受け入れます。より複雑な式の場合は、代わりに関数を使用してください。
注: オブジェクトまたは配列を変更する (置換しない) 場合、それらの参照は同じオブジェクト/配列を指しているため、古い値は新しい値と同じになります。 Vue は、変更前の値のコピーを保持しません。
<template> <p id="app"> <p class="demo"> <input type="text" class="num1" v-model="num1"> <label class="sign">-</label> <input type="text" class="num2" v-model="num2"> <label class="sign">=</label> <label class="result">{{resultNum}}</label> </p> </p> </template> <script> export default { name: 'app', data() { return { num1: 1, num2: 5, resultNum: null } }, watch: { num1: function() { var _num1 = parseInt(this.num1); var _num2 = parseInt(this.num2); this.resultNum = _num1 - _num2; }, num2: function() { var _num1 = parseInt(this.num1); var _num2 = parseInt(this.num2); this.resultNum = _num1 - _num2; } }, mounted: function() { var _num1 = parseInt(this.num1); var _num2 = parseInt(this.num2); this.resultNum = _num1 - _num2; } } </script> <style> #app { font-family: 'Avenir', Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } input.num1, input.num2 { width: 100px; } label.sign { font-size: 30px; vertical-align: -3px; } label.result { font-size: 20px; } </style>
3.vm.$delete
使用法:
これはグローバル Vue.delete のエイリアスです。
<template> <p id="app"> <p class="demo"> <ul> <template v-for="(v,index) in list"> <li>{{v.name}}</li> <li>{{v.age}}</li> <button @click="deleteFun(index)">delete</button> </template> </ul> </p> </p> </template> <script> export default { name: 'app', data() { return { list: [{ name: '小颖', age:22 }, { name: '仔仔', age:1 }, { name: '黑妞', age:1 }, { name: '土豆', age:1 }] } }, methods: { deleteFun(index) { this.$delete(this.list[index], 'age'); } } } </script> <style> #app { font-family: 'Avenir', Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; color: #2c3e50; margin-top: 60px; } </style>
関連する推奨事項:
vue-cliプロジェクトでmockjsを使用する方法の詳細な説明
vueで画像を使用してvue-lazyloadプラグインを遅延ロードする
グローバル変数とグローバル関数メソッドを定義するvueプロジェクト内
以上がvue インスタンスのメソッドとデータの詳細な説明の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。