reportComplaints.js: Uncaught TypeError: Cannot read property 'message' of undefined
Posted 弓长张&木子李
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了reportComplaints.js: Uncaught TypeError: Cannot read property 'message' of undefined相关的知识,希望对你有一定的参考价值。
vonic 中遇到这么个问题, 一直提示我未定义, 可是明明有定义
var tab={ message:{ number:‘‘, title:‘‘ } }
var id= { template: ‘#id‘, data: function(){ return tab; }, created: function () { //感觉问题就是这
var self = this; }, methods: { showComplaintsDetail:function(item){ var self = this; self.tab.message= item; //这样写就会报那个错误
}
}
}
后来发现可能是var self = this; 的问题, 结果去掉后就正常了,或者把tab去掉也可以恢复正常, 感觉就是self获取的this不一样, 有些self中包含tab, 有些包含的是tab中的属性,
这里先简单记一下, 有机会在深入了解
以上是关于reportComplaints.js: Uncaught TypeError: Cannot read property 'message' of undefined的主要内容,如果未能解决你的问题,请参考以下文章