这是我的控制器代码
.when('/showprofile/:UserID', { templateUrl: 'resources/views/layout/showprofile.php', controller: 'ShowOrderController', })
我通过网址传递参数。
我试图像这样直接通过url访问此页面
http://192.168.1.58/myapp/#/showprofile/8
但这将我重定向到
http://192.168.1.58/myapp/#/showprofile/:UserID
如何在我的视图中获取url值?
这是我的app.js ,这是我的authCtrl.js
在您的控制器中尝试此操作,它将根据url值返回对象,然后我们可以像这样获得受尊敬的值
//it will return the object console.log($routeParams); //get the specific url value like this console.log($routeParams.UserID); or console.log($route.current.params.UserID);