我正在构建一个相当简单的AngularJS应用程序,但为了简单起见,我宁愿不使用路由(如果可能的话),只是从服务器返回单个Angular页面。基本上,使用Angular仅用于’widgets’的布局和功能,而不是在页面之间移动。
说到这里,我花了几个小时试图从当前的URL中获取ID,因此:
/Tickets/:id
所有我想在我的控制器中,从URL获取ID,然后传递给工厂。 (下面是使用伪代码的示例)
app.controller('ticketController',['$scope','$route',function ($scope,$route,$location) { //Get ID out of current URL var currentId = someFunction().id; factory.callFactory(ID); }]);
我也试过创建路由,但返回的对象似乎不提供一种方法来获取ID。
app.config(['$routeProvider',function ($routeProvider) { $routeProvider .when('/tickets/:id',{ templateUrl: '/partials/edit',controller: 'ticketController' } ); }]);
不知道我做错了什么。
This doesn’t seem to work for me
This also doesn’t seem to work,but I may be doing something wrong
请尝试$ routeParams:
原文链接:https://www.f2er.com/angularjs/145423.htmlapp.controller('ticketController','$routeParams',$routeParams) { //Get ID out of current URL var currentId = $routeParams.id; }]);