0
如何在angularjs中添加從url到控制器的get請求參數 我的要求是http://localhost/abc-ang/#!/abc/8
和我的控制器代碼是如何在Angularjs中添加get請求參數
app.controller('AbcCtrl', function($scope,$http) {
$http.get("src/public/add/:id").then(function(response) {
$scope.abc = response.data;
});
});
我想更換src/public/add/:id
到src/public/add/8
我怎麼能做到這一點動態?
我的路由配置是
app.config(['$routeProvider', function($routeProvider) {
$routeProvider
.when('/abc', {
templateUrl: "tpl/welcome.html"
})
.when('/abc/:wineId', {
templateUrl: 'tpl/abc-details.html',
controller: 'AbcDetailCtrl'
})
.otherwise({ redirectTo: '/abc' });
}]);
的app.config([ '$ routeProvider',函數($ routeProvider){$ routeProvider 。當( '/ ABC',{ templateUrl: 「TPL/welcome.html」 }) 。當('/ ABC /:wineId」,{ \t templateUrl: 'TPL/ABC-details.html', \t控制器: 'AbcDetailCtrl' }) 。否則({redirectTo: '/ ABC'}); }]); –