我正在尝试使用带有自定义模板的 SP Online 站点中的 Javascript 客户端对象模型在我的 sharepoint 托管应用程序中创建一个站点。
问题:我可以在共享点托管应用程序中执行此操作吗?如果是这样,请你提供一些例子。
这是我的代码
this.context = SP.ClientContext.get_current();
this.web = context.get_web();
// Build out the WebCreationInformation for the new site
var wci = new SP.WebCreationInformation();
wci.set_title('My New Web Site 2');
wci.set_description('Description Input');
wci.set_url('mynewwebsite7');
wci.set_language(1033);
wci.set_useSamePermissionsAsParentSite(true);
wci.set_webTemplate('STS#1');
// Create the new web in the client context
this.childWeb = this.web.get_webs().add(wci);
this.context.load(this.web);
this.context.load(this.childWeb);//, 'ServerRelativeUrl', 'Created');
// Now create it on the server
this.context.executeQueryAsync(Function.createDelegate(this, this.createSiteSucceeded),
Function.createDelegate(this, this.createSiteFailed));