我想在http get
中传递一个对象 $http({
method: 'GET',
url: '/requestoffwork'
}).then(function successCallback(response) {
}, function errorCallback(response) {
});
我尝试了这个并且它没有用。
$http({
method: 'GET',
url: '/requestoffwork',
someParam: $scope.dt
}).then(function successCallback(response) {
}, function errorCallback(response) {
});
答案 0 :(得分:2)
如果您想要在GET查询字符串中添加参数,则需要使用params
对象中的config
选项,如下所示:
$http({
method: 'GET',
url: '/requestoffwork',
params : {
someParam: $scope.dt
}
}).then(function successCallback(response) {
}, function errorCallback(response) {
});
希望这有帮助!