admin管理员组文章数量:1344698
I am using vue.js version 2 in a web project.
I know that reactivity has some constraints about adding new members to objects.
That said, I am working with a relatively plex data object that has a multitude of nested members, arrays of sub-objects and so on.
I am now using puted properties to get/set some of these members in specific ponents, and I am getting/setting those nested properties using lodadh _.set
For example: _.set(myObj, 'GeneralData.Body[0].MainAddress.StreetNumber')
My issue is that, apart from GeneralData
, the remaining part could not exist and thus the whole thing is not reactive.
How can I achieve this in vue.js?
I tried to use the $set
function provided by vue.js but it creates a single nested property named 'GeneralData.Body[0].MainAddress.StreetNumber' (as a string) and not the object tree as the lodash function.
I am using vue.js version 2 in a web project.
I know that reactivity has some constraints about adding new members to objects.
That said, I am working with a relatively plex data object that has a multitude of nested members, arrays of sub-objects and so on.
I am now using puted properties to get/set some of these members in specific ponents, and I am getting/setting those nested properties using lodadh _.set
For example: _.set(myObj, 'GeneralData.Body[0].MainAddress.StreetNumber')
My issue is that, apart from GeneralData
, the remaining part could not exist and thus the whole thing is not reactive.
How can I achieve this in vue.js?
I tried to use the $set
function provided by vue.js but it creates a single nested property named 'GeneralData.Body[0].MainAddress.StreetNumber' (as a string) and not the object tree as the lodash function.
2 Answers
Reset to default 10You can use _.setWith
which lets you tell lodash
what function to use to create props.
So, solution to your problem will be like:
_.setWith(myObj, 'GeneralData.Body[0].MainAddress.StreetNumber', 'somevalue', function(nsValue, key, nsObject){
return Vue.set(nsObject, key, nsValue)
})
Reference:
https://lodash./docs/4.17.11#setWith
https://v2.vuejs/v2/api/#Vue-set
Assign your object to a variable first:
const objToDeploy = myObj
_.set(objToDeploy, 'GeneralData.Body[0].MainAddress.StreetNumber')
Then when you're done, assign that with Vue.set
Vue.set(this, 'myObj', objToDeploy)
You should know that work with these heavy nested data sets and reactive properties will cause an entire re-draw of the Virtual DOM because of how the Observable
reactivity works in Vue. Therefore it is best to split your array of multi nested sub objects
into their own Models
where you don't have this issue.
本文标签: javascriptVuejshow to reactively add quotmultilevelnestedquot member to objectStack Overflow
版权声明:本文标题:javascript - Vue.js - how to reactively add "multi-level-nested" member to object - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743703070a2524651.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论