0
當我運行我的控制器文件時,出現此錯誤。TypeError:無法讀取未定義的屬性'indexOf'
**TypeError: Cannot read property 'indexOf' of undefined**
if (attribute.attributeId == 'created_on_attr' || attribute.attributeId == 'modified_on_attr' ||
attribute.attributeId == 'created_by_attr' || attribute.attributeId == 'modified_by_attr'){
alert(attribute.attributeId.indexOf("fileUpload")!= -1);
attribute.isEnabled = false;
}
你能提供這個
你能提供此代碼嗎? – Matt
提醒你的'屬性'JSON。你會發現attribute.attributeId未定義。 –
使用===而不是==,應該解決問題 – harishr