gpt4 book ai didi

vue.js - Vue 为每个计算属性

转载 作者:行者123 更新时间:2023-12-03 06:39:19 24 4
gpt4 key购买 nike

这个问题可能有一个非常简单的解决方法,但我似乎无法让它正常工作。我正在使用 Vuetify 数据表来循环并显示我的所有属性,但是当我使用计算属性时它似乎无法正常工作。我正在尝试将一些 Prop (街道、城市、州、 zip )组合到一个计算地址 Prop 中。因此,当我单独使用每个 Prop 时,它可以像这样正常工作:

<td class="text-xs-center">{{ props.item.street }}</td>
<td class="text-xs-center">{{ props.item.city }}</td>
<td class="text-xs-center">{{ props.item.state }}</td>
<td class="text-xs-center">{{ props.item.zip }}</td>

但是,如果在我的 Vue 模板的脚本部分,我创建了一个计算属性“fullAddress”,如:
computed: {
fullAddress () {
return this.street & '\n' & this.city & ', ' & this.state & ' ' & this.zip
}
}

然后在上面的模板中使用它,例如:
<td class="text-xs-center">{{ props.item.fullAddress() }}</td>

它根本不起作用。我也尝试了许多其他方法来写出来,但没有任何效果。我是 Vue 的新手以及它如何使用计算属性,所以我确信我只是不了解它是如何正常工作的。

编辑:我正在使用 Vuetify 数据表来循环我的数据。我正在使用他们的文档来显示表格。就像我说的,我是 Vue 的新手,所以我想弄清楚这一切。我相信 :items="items"是所有 Prop 的 v-bind(类似于 v-for 循环?)。下面是一个更完整的例子,展示了 Vuetify 对一个非常简单的数据表的作用:
<template>
<v-data-table
:headers="headers"
:items="items"
hide-actions
class="elevation-1"
>
<template slot="items" slot-scope="props">
<td>{{ props.item.name }}</td>
<td class="text-xs-right">{{ props.item.street }}</td>
<td class="text-xs-right">{{ props.item.city }}</td>
<td class="text-xs-right">{{ props.item.state }}</td>
<td class="text-xs-right">{{ props.item.zip }}</td>
</template>
</v-data-table>
</template>

<script>
export default {
data () {
return {
headers: [
{
text: 'Name',
sortable: false,
value: 'name'
},
{ text: 'Street', value: 'street' },
{ text: 'City', value: 'city' },
{ text: 'State', value: 'state' },
{ text: 'Zip Code', value: 'zip' }
],
items: [
{
name: 'Braums',
street: '159 W Elm St',
city: 'St. Louis',
state: 'MO',
zip: 83607
},
{
name: 'McDonalds',
street: '237 N Cup Way',
city: 'Dallas',
state: 'TX',
zip: 47621
}
]
}
}
}
</script>

最佳答案

感谢您扩展您的问题。

你不能做什么:你不能有一个计算数组,因为计算不与数据项相关联,它们与组件相关联。您建议的编写方式,计算结果必须具有不同的 this每个item .但它的 this是组件。

您可以创建基于 items 的计算返回 items 中的每个值增加了 fullAddress您为该项目计算的值。请注意,您应该注意不要修改您原来的 item ;我用 Object.assign创建一个新副本。

然后你将计算出的数组传递给你的 v-table 而不是传递 items .

我只是用新变量代替 street 来表明它有效。

Vue.use(Vuetify);

new Vue({
el: '#app',
data() {
return {
headers: [{
text: 'Name',
sortable: false,
value: 'name'
},
{
text: 'Street',
value: 'street'
},
{
text: 'City',
value: 'city'
},
{
text: 'State',
value: 'state'
},
{
text: 'Zip Code',
value: 'zip'
}
],
items: [{
name: 'Braums',
street: '159 W Elm St',
city: 'St. Louis',
state: 'MO',
zip: 83607
},
{
name: 'McDonalds',
street: '237 N Cup Way',
city: 'Dallas',
state: 'TX',
zip: 47621
}
]
}
},
computed: {
itemsWithFullAddress() {
// This creates a new empty object, copies the item into it,
// then calculates `fullAddress` and copies that entry into it
return this.items.map((obj) => Object.assign({}, obj, {
fullAddress: `${obj.street}\n${obj.city}, ${obj.state} ${obj.zip}`
}));
}
}
});
<link href="//unpkg.com/vuetify/dist/vuetify.min.css" rel="stylesheet" />
<script src="//unpkg.com/vue@latest/dist/vue.js"></script>
<script src="//unpkg.com/vuetify/dist/vuetify.min.js"></script>
<div id="app">
<v-data-table :headers="headers" :items="itemsWithFullAddress" hide-actions class="elevation-1">
<template slot="items" slot-scope="props">
<td>{{ props.item.name }}</td>
<td class="text-xs-right">{{ props.item.fullAddress }}</td>
<td class="text-xs-right">{{ props.item.city }}</td>
<td class="text-xs-right">{{ props.item.state }}</td>
<td class="text-xs-right">{{ props.item.zip }}</td>
</template>
</v-data-table>
</div>

关于vue.js - Vue 为每个计算属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49762140/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com