我应该用javascript调用json:
var arr = { username: "user@user.com", password : "mypassword" , portfolioID : "xxxxxxxxxxxxxxxxx" };
$.ajax({
url: 'https://siam.eseye.com/login',
type: 'POST',
data: JSON.stringify(arr),
dataType: "json",
contentType: 'application/json; charset=utf-8',
async: false,
success: function(msg) {
alert(msg);
}
});
返回给我的错误:缺少CORS标题“Access- Control-Allow -Origin”。 注意,在说这是一个双重问题之前,请在这里阅读,我在线搜索,然后我做了:
插入标题(“Access-Control-Allow -Origin:*”);
Wamp> Apache> Apache模块> headers_module已启用
添加了数据类型
dataType:json或jsonp错误仍然存在
在所有这些证据之后,它将无法正常工作。
还有什么我忘记尝试的吗? 与邮差的API工作。
谢谢。