我有一个带有道具的组件,我想将值从false修改为true,但我有一个消息表单chrome控制台
Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders
在父组件中,我有一个函数(myFunction),它接受一个参数(value)。
我需要像这样保留我的参数,但我还需要从子组件检索emit的值,以更改myData的值,而不改变child中的props。
https://codesandbox.io/s/distracted-wiles-w8vwf
<template>
<div>
<p>The number is {{number}}</p>
<Child :MyProp="myData" @on-click-btn="myfonction(5)"/>
</div>
</template>
<script>
import Child from "./components/Child.vue";
export default {
data() {
return {
myData: 'button',
number: 1
};
},
components: {
Child
},
methods: {
myfonction(value) {
this.number = value;
}
}
};
</script>
谢谢
相反,您可以从子
发出事件
parent.vue
<template>
<child
MyProp="myData"
@on-click-btn="handleClick" // [2] listen to the event & attach an handler to it
/>
</template>
export default {
data () {
return {
myData: false
}
},
// [3] event handler gets called when event is triggered ie. at user's click
handleClick (currentValue) {
// [4] modify the data, that is being passed as prop to the child, so that child recieves the updated data
this.myData = !currentValue
}
}
child.vue
<template>
<button @click="handleClick">click me, I am {{ MyProp }}</button>
</template>
export default {
props: ['MyProp'],
method: {
handleClick () {
// [1] emit an event on user's click & pass the current prop value to it
this.$emit('on-click-btn', this.MyProp)
}
}
}
演示
可以使用sync
修饰符:
Vue.component('child', {
template: '#child',
props: {
val: {
type: String, required: true
}
},
methods: {
handleInput(event) {
this.$emit('update:val', event.target.value)
}
}
})
new Vue({
el: '#app',
data(){
return {
value: ''
}
}
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.6.11/vue.min.js"></script>
<script type="text/x-template" id="child">
<input @input="handleInput">
</script>
<div id="app">
<child :val.sync="value"></child>
<div>{{ value }}</div>
</div>
我是Vue JS的新手,我遇到了这个问题,我试图通过将父道具传递给孩子来制作数据表 我犯了这个错误 [Vue warn]:避免直接改变道具,因为每当父组件重新渲染时,该值将被覆盖。相反,使用基于道具值的数据或计算属性。道具正在变异:“editem” 这是我的密码 这是我的页面: 这是我的组件:
我得到警告: app.js:87486[Vue警告]:避免直接更改prop,因为每当父组件重新呈现时,该值将被覆盖。相反,使用基于道具值的数据或计算属性。被变异的道具:“喜欢计数” 我的刀锋 Vue代码
我有一个问题与我的道具editToWork: app.js:42491[Vue warn]:避免直接修改道具,因为每当父组件重新渲染时,该值将被覆盖。相反,使用基于道具值的数据或计算属性。道具正在变异:“任务编辑” 组件TaskComponent.vue 组件EditTaskComponent:
如何解决此错误消息: [Vue warn]:避免直接改变道具,因为每当父组件重新渲染时,该值将被覆盖。相反,使用基于道具值的数据或计算属性。道具变异:“抽屉” 父组件: 子组件:
我试图在Laravel中加入3个表后查看特定表的日期。但是它只显示一个表的信息。 下面是连接3个表的代码: 路由文件: 下面是查看刀片模板中信息的脚本 刀片中的代码: 这里我想查看发票的创建日期,但它显示了subscribers表中订户的创建日期。但我想从发票表中查看发票的具体日期。 我该怎么做?当做
问题内容: 最近,我被分配创建拍卖系统的任务。在我的工作中,我遇到了无数次由于列名不明确而导致包含联接的SQL查询无法执行的情况。考虑以下(简化的)拍卖表结构: 表: (创建拍卖的用户的ID) 表: (添加项目的用户的ID) (有该物品的拍卖的ID) (初始价格) 表: 表: (出价的用户的ID) (已提高价格的项目) (优惠价格) 如您所见,有许多列具有冲突的名称。连接这些表需要采取一些措施来消