従来のシナリオ:リストを表示するが、空の場合は「データなし」を表示する。vue.js空のオブジェクトを決定する適切な方法
私は何かをするのがやや複雑であるという事実は、私は単純に間違っていると思います。
ここに私の現在の解決策があります。
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="http://cdn.jsdelivr.net/vue/1.0.16/vue.js"></script>
<div id="element">
<div v-if="empty">No item in inventory</div>
<div v-for="(index, item) in inventory">
{{item.key}}<button onclick="remove('{{index}}')">remove</button>
</div>
</div>
<script type="text/javascript">
"use strict";
var vm;
$(function() {
vm = new Vue({
el: '#element',
data: {
inventory: {"id1" : {"key" : "val1"}, "id2" : {"key" : "val2"}},
empty: false
},
watch: {
inventory: function() {
vm.empty = $.isEmptyObject(vm.inventory);
}
}
});
});
function remove(key) {
Vue.delete(vm.inventory, key);
}
</script>
これより良い解決策はありますか?
を使用することができます。インベントリは配列ではなく、オブジェクトであり、オブジェクトには「.length」プロパティがありません。 –
@Finch_Powers私はそれを逃していた、私はそれに応じて答えを更新しました。 – Saurabh
私は