0

我使用下面的代码来访问我的 VSTS 扩展中的数据存储。

// Get data service
VSS.getService(VSS.ServiceIds.ExtensionData).then(function(dataService) {
    // Get all document under the collection
    dataService.getDocuments("MyCollection").then(function(docs) {
        console.log("There are " + docs.length + " in the collection.");
    });
});

是否可以在不使用 VSTS 的通用 Web 应用程序中使用它?我只想访问存储在不同网络应用程序中的数据。

4

1 回答 1

1

调用此 URL 应该可以:

https://{yourvstsaccount}.extmgmt.visualstudio.com/_apis/ExtensionManagement/InstalledExtensions/{extensionpublisherName}/{extensionname}/Data/Scopes/{scope}/Collections/{collectionName}/Documents/{documentName}

例如: 在此处输入图像描述

于 2018-08-17T02:51:47.153 回答