我正在尝试使用 Angular JS 从 Web 服务获取响应,我可以使用简单的 curl 命令通过我的 shell 完美地访问它:
curl --header "Content-type: application/json" --request POST
--data '{"username": "name", "password": "pwd"}' 192.168.2.1:9000/ws/login
但是,当我尝试使用 Angular 来实现它时,$http.post
我会遇到一些“有趣”的行为。
虽然我的数据是:
var url = "192.168.2.1:9000/ws/login"
var postData = {
username: un,
password: pwd
}
我已经尝试过postData
作为 JSON 对象和字符串化 JSON
使用这样的调用:
$http.post( url, postData ).
success(function(data) {
console.log(data)
}).
error(function(data, status, headers, config) {
console.log(data, status, headers, config)
})
甚至
$http({
url: url,
method: 'POST',
data: JSON.stringify(postData),
headers: {'Content-type': 'application/json'}
}).
success(function(data, status, headers, config) {
console.log('Success: ', data, status, headers, config)
}).
error(function(data, status, headers, config) {
console.log('Error: ', data, status, headers, config)
})
干脆什么都不做。
什么都没有!
相反,在 url 前面加上一个
http://
,给了我:
OPTIONS http://192.168.2.1:9000/ws/login 404 (Not Found) angular.js:7073
OPTIONS http://192.168.2.1:9000/ws/login Origin http://localhost:9000 is not allowed by Access-Control-Allow-Origin.
我真的很迷茫......任何建议将不胜感激!