Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用以下 url 执行获取请求以从服务器恢复数据:
url = /api/projects/:projectId/scenarios
如何在 AdngularJS 中使用 $http.get 来做到这一点?
你可能想看看 Restangular,我更喜欢它的符号而不是标准的 angularjs $http 或 $resource。
Restangular.setBaseURL('/api/'); Restangular.one('projects', projectId).all('scenarios').getList().then(function(data) { myVariable = data; });
斜角