gpt4 book ai didi

javascript - 如何解决[Vue warn] : Avoid mutating a prop directly since the value will be overwritten on vue. js 2?

转载 作者:搜寻专家 更新时间:2023-10-30 22:15:11 24 4
gpt4 key购买 nike

我的观点是这样的:

<div class="col-md-8">
...
<star :value="{{ $data['rating'] }}"></star>
...
</div>

我的明星组件是这样的:

<template>
<span class="rating" :class='{"disable-all-rating": !!value}'>
<template v-for="item in items">
<label class="radio-inline input-star" :class="{'is-selected': ((starValue>= item.value) && starValue!= null)}">
<input type="radio" class="input-rating" v-model="starValue" @click="rate(item.value)">
</label>
</template>
</span>
</template>
<script>
export default{
props: {
'value': null
},
computed: {
starValue () {
return this.temp_value
}
},
data(){
return{
items: [
{value: 5},
{value: 4},
{value: 3},
{value: 2},
{value: 1}
],
temp_value: null,
}
},
methods:{
rate: function (star) {
this.$http.post(window.BaseUrl + '/star', {star: star});
this.temp_value = star;
},
}
}
</script>

我的 CSS 是这样的:

span.rating {
direction: rtl;
display: inline-block;
}

span.rating .input-star {
background: url("../img/star.png") 0 -16px;
padding-left: 0;
margin-left: 0;
width: 16px;
height: 16px;
}

span.rating .input-star:hover, span.rating .input-star:hover ~ .input-star {
background-position: 0 0;
}

span.rating .is-selected{
background-position: 0 0;
}

span.rating .is-disabled{
cursor: default;
}

span.rating .input-star .input-rating {
display: none;
}

当我点击星标时,控制台出现这样的错误:

[Vue warn]: Avoid mutating a prop directly since the value will be overwritten whenever the parent component re-renders. Instead, use a data or computed property based on the prop's value. Prop being mutated: "value" (found in at C:\xampp\htdocs\myshop\resources\assets\js\components\Star.vue)

我该如何解决?

最佳答案

您需要使用 getter 和 setter 进行计算,然后使用 $emit 更新属性,例如:

    computed: {
starValue:{
get:function () {
return this.temp_value
},
set: function(newValue){
// $emit is the correct way to update props:
this.$emit('update:value', newValue);
}
}
}

关于javascript - 如何解决[Vue warn] : Avoid mutating a prop directly since the value will be overwritten on vue. js 2?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42522266/

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