如何从webpart获取SharePoint当前web的可用语言?

How to get the available languages of the current web of SharePoint from webpart?

fuction getLanguage(){ var context =new SP.ClientContext(hostUrl); var web = context.get_web(); context.load(web); context.executeQueryAsync( function (sender, args) { var lcid = web.get_language(); }, function (sender, args) { }); }

编辑:如果您想要网络的可用语言,您必须加载 属性 SupportedUILanguageIds,它将为您提供。
这是 link 到 the documentation
如果您想要用户的语言,您必须从用户配置文件中获取 SPS-MUILanguages。
这是一些关于用户配置文件 api 工作原理的文档 documentation here
希望对您有所帮助。