如何使用JSOM在SharePoint Online中获取货币符号ftrom的LocalID?
我有一个localeId,它的英语(英国)设置为2057,现在我想获取其货币符号uisng JSOM。
有人可以为我指出一些链接吗?
答案 0 :(得分:0)
您可以从源自区域设置的get_localeId
中找到货币符号。
以下是用于检索网站集ID并从this链接中检索国家/地区的代码
(function(){
var context = SP.ClientContext.get_current();
var web = context.get_web();
var regionalSettings = web.get_regionalSettings();
context.load(regionalSettings);
context.executeQueryAsync(
function() {
console.log(regionalSettings.get_localeId());
},
function(sender,args){
console.log(args.get_message());
}
);
})();