我需要使用 javascript 以编程方式将我的 sharepoint 应用程序从根站点安装到其他子站点。但我的安装功能不起作用:
function InstallApp()
{
var context = new SP.ClientContext(appweburl);
var factory = new SP.ProxyWebRequestExecutorFactory(appweburl);
context.set_webRequestExecutorFactory(factory);
var installContext = new SP.AppContextSite(context, hostweburl + '/subSite');
var installWeb = installContext.get_web();
var appFile = installWeb.getFileByServerRelativeUrl('/SiteAssets/myAppFile.app');
installWeb.loadAndInstallApp(appFile);
installWeb.update();
installContext.get_context().load(installWeb);
installContext.get_context().executeQueryAsync(onInstallSuccess, OnFailure);
}