我使用下面的代码访问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应用程序中使用它? 我只想访问存储在其他Web应用程序中的数据。