$http({
method: 'POST',
url: '../controller/subscriber.php',
data: $scope.data,
headers: {'Content-Type': 'application/x-www-form-urlencoded'}
})
.success(function (data) {
if (data.error === "false") {
$location.path("/group/detail/$routeParams.gId");
}
});
答案 0 :(得分:2)
添加参数,你应该使用这个
$location.path("/group/detail/"+$routeParams.gId);
答案 1 :(得分:2)
要添加参数,您应该使用$ location.search()方法:
$location.path('/myURL/').search({param: 'value'});
$location
方法是可链接的。
这个产品:
/myURL/?param=value