在for循环动态赋值的时候发现有部分数据赋值失败,下面给大家介绍一下解决方法!
数组赋值失败
for (let i = 0; i < _thisR.length; i++) {
for (let j = 0; j < _thisA.length; j++) {
if (_thisR[i].typeValue == _thisA[j].value) {
//_thisR[i].list = constant[_thisA[j].options];赋值成功靠运气,彻底解决方法用下面的
_thisR[i].list = [...constant[_thisA[j].options]];
this.$forceUpdate();
}
}
}
值已经存在,但子组件获取的数据是空
方法一:
//template
{{ checkRulesLabel }}
//props
props: {
checkRulesLabel: {
type: String,
default: function() {
return "";
}
}
},
//watch
watch: {
checkRulesLabel() {}
}
方法二:
//如果需要传参到data
//template
{{ title }}
//props
props: {
checkRulesLabel: {
type: String,
default: function() {
return "";
}
}
},
//data
data() {
return {
title: ""
};
},
//watch
watch: {
checkRulesLabel: {
handler(val) {
this.title = val;
},
immediate: true
}
}
以上是编程学习网小编为您介绍的“vuejs子组件赋值失败解决方法”的全面内容,想了解更多关于 vuejs 内容,请继续关注编程基础学习网。
沃梦达教程
本文标题为:vuejs子组件赋值失败解决方法
基础教程推荐
猜你喜欢
- vue项目中v-if和v-for哪个级别更高 2025-01-19
- 事件冒泡是什么如何用jquery阻止事件冒泡 2024-04-15
- CSS之居中布局的实现方法 2023-12-23
- JavaScript 设计模式中的代理模式详解 2022-08-31
- 从基础开始建立一个JS代码库第1/2页 2024-04-08
- 解决Vue路由导航报错:NavigationDuplicated: Avoided redundant navigation to current location 2024-02-08
- JS错误之:Uncaught ReferenceError: $ is not defined 2022-12-09
- Ajax提交post请求案例分析 2023-02-23
- 用js小类库获取浏览器的高度和宽度信息 2024-01-04
- JS时间戳转换方式示例详解 2023-07-09