0

我正在尝试使用带有自定义模板的 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));
4

1 回答 1

0
this.web = context.get_web();

// Build out the WebCreationInformation for the new site
var wci = new SP.WebCreationInformation();

你不能在你的代码中写这个。您必须先加载 requestexecutor.js,然后进行客户端上下文或其余 API 调用以获得所需的结果。您还必须完全控制 appmanifest 中的网站集。

于 2013-11-27T18:37:04.917 回答