在office 365上使用javascript创建网站集(sharepoint online)

时间:2013-10-02 07:14:51

标签: javascript sharepoint sharepoint-2013 office365

我想使用javascript创建网站集,但我在网上找不到任何内容。

谢谢。

1 个答案:

答案 0 :(得分:0)

假设您使用的是sharepoint托管应用

//create sp context and get root
var clientContext = new SP.ClientContext.get_current();
var rootWeb = clientContext.site.rootWeb();
this.clientContext.load(rootWeb);
this.clientContext.executeQUery();

//set web info
var webInfo = new SP.WebCreationInformation();
webInfo.set_webTemplate('YourTemplateName');
webInfo.set_description('Your site description');
webInfo.set_title('Your site tittle');
webInfo.set_url(siteUrl);
webInfo.set_language(yourLangCode);
this.rootWeb.get_webs().add(webInfo);
this.rootWeb.update();

// save site and set callbacks
this.clientContext.load(this.rootWeb);
this.clientContext.executeQueryAsync(
    Function.createDelegate(this, this.OnSiteCreationSuccess),
    Function.createDelegate(this, this.Error));

请记住,您的模板必须使用您使用的langCode保存,否则会抛出未找到的异常。