Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

select :value不能绑定到对象属性吗?

select :value不能绑定到对象属性吗?:value="activeStationGroup.irrigation_scheduler.start_time,选择后,select不变。
这样可以:

                    <q-select  ref="start_time" dense emit-value map-options
                        :options="timeOptions"
                        :value="start_time"
                        @input="val => { setSelect('start_time', val) }"
                        :rules="[
                            val => getValue(val) <= getValue(activeStationGroup.irrigation_scheduler.stop_time) - 2 || $t('Start time can not later than stop time before one hour'),
                            val => validatecCaculate(val) || $t('Irrigate time can not later than stop time')
                        ]">
                        <template v-slot:before>
                            <div class="edit-label"> {{$t('Start time')}}(*):</div>
                        </template>
                    </q-select>

这样就不可以:

                        <q-select  ref="start_time" dense emit-value map-options
                            :options="timeOptions"
                            :value="activeStationGroup.irrigation_scheduler.start_time"
                            @input="val => { setSelect('start_time', val) }"
                            :rules="[
                                val => getValue(val) <= getValue(activeStationGroup.irrigation_scheduler.stop_time) - 2 || $t('Start time can not later than stop time before one hour'),
                                val => validatecCaculate(val) || $t('Irrigate time can not later than stop time')
                            ]">
                            <template v-slot:before>
                                <div class="edit-label"> {{$t('Start time')}}(*):</div>
                            </template>
                        </q-select>

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

原因找到了,双向绑定,不支持新增对象。也有可能是方法不对


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share

2.1m questions

2.1m answers

63 comments

56.6k users

...