fuction getLanguage(){var context = new SP.ClientContext(hostUrl); var web = context.get_web(); context.load(网页); context.executeQueryAsync( function(sender,args){ var lcid = web.get_language(); },function(sender,args){}); }
答案 0 :(得分:0)
编辑:如果您想要网络的可用语言,您必须加载属性SupportedUILanguageIds,它将为您提供。
这是the documentation的链接
如果您需要用户的语言,则必须从用户配置文件中获取SPS-MUILanguages。
以下是有关用户配置文件api如何工作的一些文档documentation here
希望有所帮助。