提交数据报400badrequest
前台代码如下:
xxx
js代码:
$scope.data = {
line_id:$scope.line_id,
train_id:$scope.train_id,
station:$scope.station
};
$http({
url: 'http://yiwuyahei.com/api/v1/issues',
method: 'post',
headers: {'Authorization': 'Bearer ' + data.access_token},
data: $scope.data,
})
.success(function (data, status, headers, config)
alert(123);
})
.error(function (data, status, headers, config) {
//
})
})
请大神指导哪里有问题?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
400是参数错误,查看一下发送的请求参数与后台接口代码所需是否相符~
400是参数错误 你应该和后台先沟通看看
可能是content-type的问题,问问后台传数据的格式,加个contentType: "application/json"试试。