是否可以通过javascript REST api获取sharepoint teamsite托管服务器的当前日期时间?
答案 0 :(得分:2)
您可以使用区域设置REST端点:
/_api/web/RegionalSettings/TimeZone
检索SharePoint Time Zone
设置,然后为该时区获取时间:
function getSPCurrentTime(webUrl)
{
return $.ajax({
url: webUrl + "/_api/web/RegionalSettings/TimeZone",
method: "GET",
headers: { "Accept": "application/json; odata=verbose" }
}).then(function(data){
var offset = data.d.Information.Bias / 60.0;
return new Date( new Date().getTime() - offset * 3600 * 1000);
});
}
<强>用法强>
getSPCurrentTime(_spPageContextInfo.webAbsoluteUrl)
.done(function(value)
{
console.log(value.toUTCString());
})
.fail(
function(error){
console.log(JSON.stringify(error));
});