我目前正在调试Sharepoint 2010网站,并在调试器命中以下功能时遇到错误:
var thisUserID = $().SPServices.SPGetCurrentUser({
fieldName: "ID",
debug: false
});
错误是:
The value of the property '$' is null or undefined, not a Function object
因此,我想知道(as a user at the bottom did too)调用$()。SPServices.SPGetCurrentUser()是否从AD或SP用户配置文件中提取数据?
最佳答案
据我所知,它已经从Active Directory中而不是从User Profiles中提取信息,我已经尝试并测试了它。有时它的行为确实很奇怪。
关于javascript - 调用$()。SPServices.SPGetCurrentUser()是否从AD或SP用户配置文件中提取数据?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14745060/