欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

对VUE中的对象添加属性

程序员文章站 2023-02-22 21:50:36
背景:在通过接口获取数据集对象后,根据业务场景需要在数据集对象上增加额外的属性 data中定义的数据集对象minddata格式示例如下 minddata: [...

背景:在通过接口获取数据集对象后,根据业务场景需要在数据集对象上增加额外的属性

data中定义的数据集对象minddata格式示例如下

minddata: [
{label:'清醒',value:'清醒'}, {label:'朦胧',value:'朦胧'},
{label:'嗜睡',value:'嗜睡'}, {label:'昏睡',value:'昏睡'},
{label:'谵妄',value:'谵妄'}, {label:'模糊',value:'模糊'}]

1) 通过post调用接口获取mindata对象,遍历添加属性value和content(方便后续通过v-model设置绑定radio控件的选择结果值value)

this.$http.post('xxxxxxxxxxxxxxxxxxxxxxxx', {
parms:'xxx'
}).then(res => {
letsel= this
sel.minddata= res.data
for(letitemofsel.minddata) {
item.value= ''
item.content=''
}
})

2) 这里我自定义了radio控件,部分代码如下

<mt-cell:title="label"class="zm-radio mint-field">
<input:placeholder="placeholder"
type="text"
:readonly="!editable"
style="margin-right: 14px;"
v-model="currentcontent"
@click="onhandleclick"
class="mint-field-core"/>
<spanclass="mintui mintui-back reset" @click="popupvisible=true"></span>
<mt-popupclass="zm-radio-popup"
position="bottom"
v-model="popupvisible"
popup-transition="popup-fade"
:style="{height:popupheight}"
ref="pop">
<zm-container>
<zm-mainref="zmradiomain">
<div@click="popupvisible=false">
<mt-radiostyle="width: 100%"
:title="label"
align="right"
v-model="currentvalue"
:options="options">
</mt-radio>
</div>
</zm-main>
</zm-container>
</mt-popup>
</mt-cell>

export default{
watch: {
popupvisible() {
this.options= this.dictitems
this.currentvalue= this.value
letheight= this.options.length * 48
letmaxheight= window.innerheight * 0.5
if(height> maxheight) {
this.popupheight= maxheight+ 'px'
letscrollheight= maxheight* maxheight/ height
this.$refs.zmradiomain.setscroll(scrollheight,window.innerwidth)
}
},
currentvalue() {
console.log('radio_currentvalue:'+ this.currentvalue)
this.$emit('input',this.currentvalue)
letcontent= this.content
letlabel= ''
for(letitemof this.options) {
if(_.isequal(item.value,this.currentvalue)) {
label= item.label
break
}
}
this.currentcontent= content
}

3) 绑定到自定义的radio控件上

<zm-radiolabel="单选:"
:editable="false"
:dict-data="minddata"
:content.sync="data.content"
v-model="data.value"></zm-radio>

赋值的关键代码如下

watch: {
popupvisible() {
this.options= this.dictitems
this.currentvalue= this.value

弹出选项框列表的时候,会把当前文本上的value值赋值给currentvalue对象,这样下拉框就会自动定位显示原先的选项值,期望达到的效果如下

对VUE中的对象添加属性

乍看之下,没什么问题,运行后发现

对VUE中的对象添加属性

点击下拉框,弹出选项列表,怎么数据没有通过v-model绑定上去,并且radio的value和lable值一直是空

对VUE中的对象添加属性

捣鼓了很久,测试发现通过定义mindradio对象的方式绑定在zm-radio对象上,显示效果是能获得期望结果,那问题很明显,对象属性的创建有问题

<zm-radiolabel="单选:"
:editable="false"
:dict-data="minddata"
:content.sync="mindradio.content"
v-model="mindradio.value"></zm-radio>

data() {
return{
mindradio: {
code:'',
value:''
}
}

经过vue官方资料查询,提供了vue.set方法,通过以下方法解决了设置对象属性的问题

对VUE中的对象添加属性

this.$http.post('xxxxxxxxxxxxxxxxxxxxxxxx', {
parms:'xxx'
}).then(res => {
letsel= this
sel.minddata= res.data
for(letitemofsel.minddata) {
sel.$set(item,'value','')
sel.$set(item,'content','')
}
})

总结原因:其实问题是vue实例对象不允许直接添加属性或删除属性,需要通过set方式更新数据对象。

另一种实现方式,可以采用先给临时对象tempdata添加属性,再赋值给minddata

以上这篇对vue中的对象添加属性就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。