replace在逻辑层使用会报错,不能用吗?
Cannot read property 'replace' of undefined;at "pages/xxx/xxx" page getXXX function
TypeError: Cannot read property 'replace' of undefined
网友回复:
stringObject.replace(regexp/substr,replacement)
你确定你的obj是个string类型?
明显是你的string没赋值。
if (a) {
a.replace('aaa','bbb')
}
需要先确定 a 不是 undefined。 更严谨的话,需要判断 a 是不是字符串