我对SharePoint 2013中的客户端呈现有疑问。
在互联网的解决方案中,我经常发现这样的事情:
var ctx = {};
ctx.Templates = {};
ctx.Templates.Fields = {
'Aktionsliste': {
'NewForm': renderTaskCategory
}
};
我知道这个代码在打开'NewForm'时会影响字段'Aktionsliste'。打开'NewForm'时,执行函数'renderTaskCategory'。我不明白的是这些行的含义,其中包含“{}”。当“ctx”或“ctx.Templates”获得值“{}”时,它是什么意思?例如,第一行是否意味着变量ctx现在使用页面的当前SP.ClientContext?
此致 安德烈
答案 0 :(得分:0)
用于在javascript中初始化对象。
{} 语法与新对象()
完全相同