我刚收到脚本错误:
未捕获的SyntaxError:无效的简写属性初始值设定项
在我的脚本中使用这段代码,我在CRM Online中的表单上加载了新的表单渲染功能。
if (typeof (MyCompany) == "undefined") {
debugger;
MyCompany = {};
}
MyCompany.Fn = {
TestFunction: function () {
debugger;
MyCompany.Fn.TestFunctionStatic();
this.TestFunctionStatic();
},
TestFunctionStatic: function () {
console.log("Static!");
},
}
任何想法如何发生这种情况?
来源例如:https://msdn.microsoft.com/en-us/library/gg309562.aspx#BKMK_CreatingScriptLibraries