开发者问题收集

如何解决[Vue warn]: 使用数组语法时 props 必须是字符串?

2017-03-01
5948

我的视图是这样的:

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

我的星号组件是这样的:

<template>
    <span class="rating">
        <template v-for="item in items">
            <label class="radio-inline input-star" :class="{'is-selected': ((value >= item.value) && value != null), 'is-disabled': disabled}">
                <input type="radio" class="input-rating" name="input-rating" v-bind:value="item.value" v-model="value" :disabled="disabled" @click="rate(item.value)">
            </label>
        </template>
    </span>
</template>
<script>
    export default{
        props: [{'value': null,'disabled': Boolean}, 'user'], 
        data(){
            return{
                items: [
                    {value: 5},
                    {value: 4},
                    {value: 3},
                    {value: 2},
                    {value: 1}
                ],
                temp_value: null,
            }
        },
        methods:{
            rate: function (star) {
                var self = this;
                if (!this.disabled) {
                    this.$http.post(window.BaseUrl + '/star', {star: star}).then(function (response) {
                        console.log('submitted');
                    });
                    this.temp_value = star;
                    return this.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]: props must be strings when using array syntax.

[Vue warn]: Property or method "star" is not defined on the instance but referenced during render. Make sure to declare reactive data properties in the data option. (found in at C:\xampp\htdocs\myshop\resources\assets\js\components\Star.vue)

[Vue warn]: Property or method "disabled" is not defined on the instance but referenced during render. Make sure to declare reactive data properties in the data option. (found in at C:\xampp\htdocs\myshop\resources\assets\js\components\Star.vue)

我该如何解决?

1个回答

您的代码中存在几处错误。

首先,您不需要 props 中的括号:

<star :value="{{ $data['rating'] }}" :user="{{ $data['user_id'] }}"></star>
         <!-- ^^ syntax error -->

只需要:

<star :value="$data['rating']" :user="$data['user_id']"></star>

并且这可以简化为:

<star :value="rating" :user="user_id"></star>

另一个错误是 props 的声明。这就是 Vue 告诉您它无法识别 disabledvalue 的原因。

最简单的方法是 props: ['value', 'disabled', 'user'],

如果您想添加验证,请按照此处的文档操作: https://v2.vuejs.org/v2/guide/components.html#Prop-Validation

另一个问题是您正在直接改变 props。

<input ... v-model="value" ...>

value 是一个 prop。props 的流动是单向的。组件不应该改变其 props。

如果要将值发送回父级,请使用事件。以下是事件的文档: https://v2.vuejs.org/v2/guide/components.html#Custom-Events

或查看我之前的回答: 从子组件 Vue 更新父级模型

CodinCat
2017-03-01