所以我想将道具传递给Vue组件,但我希望这些道具将来会从该组件内部改变,例如当我使用AJAX从内部更新Vue组件时。所以它们只用于组件的初始化。
我的cars-list
Vue组件元素,我将带有初始属性的道具传递给single-car
:
// cars-list.vue
<script>
export default {
data: function() {
return {
cars: [
{
color: 'red',
maxSpeed: 200,
},
{
color: 'blue',
maxSpeed: 195,
},
]
}
},
}
</script>
<template>
<div>
<template v-for="car in cars">
<single-car :initial-properties="car"></single-car>
</template>
</div>
</template>
我现在的方式就是在single-car
组件中我将this.initialProperties
分配给this.data.properties
created()
初始化挂钩。它起作用并且是被动的。
// single-car.vue
<script>
export default {
data: function() {
return {
properties: {},
}
},
created: function(){
this.data.properties = this.initialProperties;
},
}
</script>
<template>
<div>Car is in {{properties.color}} and has a max speed of {{properties.maxSpeed}}</div>
</template>
但我的问题是我不知道这是否是正确的方法呢?这不会给我带来一些麻烦吗?或者有更好的方法吗?
答案 0 :(得分:59)
感谢https://github.com/vuejs/vuejs.org/pull/567我现在知道了答案。
将初始道具直接传递给数据。与更新文档中的示例一样:
props: ['initialCounter'],
data: function () {
return {
counter: this.initialCounter
}
}
但请记住,如果传递的prop是在父组件状态中使用的对象或数组,则对该prop的任何修改都将导致该父组件状态的更改。
警告:建议不要使用此方法。它会使您的组件变得不可预测。如果需要从子组件设置父数据,请使用Vuex之类的状态管理或使用“v-model”。 https://vuejs.org/v2/guide/components.html#Using-v-model-on-Components
如果您的初始道具是一个对象或数组,并且如果您不希望子状态的更改传播到父状态,那么只需使用例如Vue.util.extend
[1]制作道具的副本,而不是直接将其指向儿童数据,如下所示:
props: ['initialCounter'],
data: function () {
return {
counter: Vue.util.extend({}, this.initialCounter)
}
}
您还可以使用spread运算符来克隆道具。 Igor回答的更多细节:https://stackoverflow.com/a/51911118/3143704
但请记住,旧浏览器不支持扩展运算符,为了更好的兼容性,您需要转换代码,例如使用babel
。
[1]请记住,这是一个内部Vue实用程序,它可能会随新版本而变化。您可能希望使用其他方法来复制该道具,请参阅“How do I correctly clone a JavaScript object?”。
我在测试它的小提琴: https://jsfiddle.net/sm4kx7p9/3/
答案 1 :(得分:10)
我相信你做得对,因为它是文档中所说的。
定义一个本地数据属性,该属性使用prop的初始值作为其初始值
答案 2 :(得分:9)
在@ dominik-serafin的回答中:
如果要传递对象,则可以使用传播算子(ES6)轻松克隆它:
props: {
record: {
type: Object,
required: true
}
},
data () { // opt. 1
return {
recordLocal: {...this.record}
}
},
computed: { // opt. 2
recordLocal () {
return {...this.record}
}
},
但是最重要的是要记住使用opt。如果您要传递一个计算值,或者大于一个异步值,则为2。否则,本地值将不会更新。
演示:
Vue.component('card', {
template: '#app2',
props: {
test1: null,
test2: null
},
data () { // opt. 1
return {
test1AsData: {...this.test1}
}
},
computed: { // opt. 2
test2AsComputed () {
return {...this.test2}
}
}
})
new Vue({
el: "#app1",
data () {
return {
test1: {1: 'will not update'},
test2: {2: 'will update after 1 second'}
}
},
mounted () {
setTimeout(() => {
this.test1 = {1: 'updated!'}
this.test2 = {2: 'updated!'}
}, 1000)
}
})
<script src="https://cdn.jsdelivr.net/npm/vue@2.5.17/dist/vue.js"></script>
<div id="app1">
<card :test1="test1" :test2="test2"></card>
</div>
<template id="app2">
<div>
test1 as data: {{test1AsData}}
<hr />
test2 as computed: {{test2AsComputed}}
</div>
</template>
答案 3 :(得分:1)
作为另一种方法,我是通过子组件中的观察者实现的。
这种方式很有用,特别是当你传递一个异步值,并且在你的子组件中你想将传递的值绑定到 v-model 时。
此外,为了使其具有反应性,我将本地值发送给另一个观察者中的父级。
示例:
data() {
return {
properties: {},
};
},
props: {
initial-properties: {
type: Object,
default: {},
},
},
watch: {
initial-properties: function(newVal) {
this.properties = {...newVal};
},
properties: function(newVal) {
this.$emit('propertiesUpdated', newVal);
},
},
这样我就有了更多的控制权,也减少了意外行为。例如,当父级传递的 props 是异步的时,它可能在创建或安装生命周期时不可用。所以你可以使用@Igor-Parra 提到的计算属性,或者观察道具然后发射它。
答案 4 :(得分:1)
我第二次或第三次遇到这个问题,回到旧的 vue 项目。
不知道为什么它在 vue 中如此复杂,但我们可以通过 watch 来完成:
export default {
props: ["username"],
data () {
return {
usernameForLabel: "",
}
},
watch: {
username: {
immediate: true,
handler (newVal, oldVal) {
this.usernameForLabel = newVal;
}
},
},