本文介绍了资源的角尾斜杠的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我的 api 需要为 api 调用添加斜杠.我想知道如何通过 angular 实现这一点.
My api requires a trailing slash for api calls. I was wondering how to pull that off with angular.
所以我需要能够访问 /tasks/
或 /tasks/xxxx/.
我试图通过:
So i need to be able to access /tasks/
or a /tasks/xxxx/.
I attempted to do it via:
angular.module('taskServices', ['ngResource']).
factory('Tasks', function($resource){
return $resource('/tasks/:task_id/', {}, {
query: {method:'GET',
params:{},
isArray:true}
});
});
和一个
$scope.tasks = Tasks.query();
但它会导致 /tasks
或 tasks/xxx
查询.
But it results in a /tasks
or a tasks/xxx
query.
我如何强制它总是 /tasks/
和 /tasks/xxx/
How can i force it to always be /tasks/
and /tasks/xxx/
推荐答案
这似乎已经修复:https://github.com/angular/angular.js/pull/5560
您现在可以这样配置:
app.config(function($resourceProvider) {
$resourceProvider.defaults.stripTrailingSlashes = false;
});
这篇关于资源的角尾斜杠的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!