0

我想使用 javascript 创建一个网站集,但我在网上找不到任何东西。

谢谢你。

4

1 回答 1

0

假设您使用的是共享点托管应用程序

//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 一起保存,否则它将引发未找到的异常。

于 2013-10-03T15:46:37.397 回答