0

我正在使用 Jquery 尝试从Open Calais api 中获取一些数据,但如果我无法获得有效响应。如果我使用数据类型“脚本”,我会收到“缺少 ; before statement”的错误。如果我使用数据类型“xml”或其他任何内容,我会从 Open Calais 服务器收到 403 错误。

我决定根据这个加莱论坛帖子的最后一个条目尝试“脚本”数据类型

请不要保留对我的代码的批评和评论。我边走边靠。

我的代码:

var baseUrl="http://api.opencalais.com/enlighten/calais.asmx/Enlighten";
var licenseID="wt8h3w3pt333eewdwsyuhut6";
var content="In response to a legislative provision in a bill reauthorizing the FAA, the agency has launched a comment period as it selects six test sites to evaluate unmanned aircraft systems. The focus of the proceeding will be determining the location of the test sites along with establishing...";
var PARMS="&contentType=text/xml&outputFormat=xml/rdf"
var PostDatavar = "?licenseID="+licenseID+"&content="+encodeURIComponent(content)+PARMS;
var componentURL=baseUrl+PostDatavar;

function sendIt(sendData){
$.ajax({
    url:componentURL,
    type: "POST",
    dataType:"script",
    success:function(data){
            alert(data)); 
            console.log(data);
    },
    error:function(){
    alert("it's broken");
    }}
);

}

4

2 回答 2

1

这是因为同源政策。您不能对跨域请求使用简单的 ajax 请求。有关更多信息,请参阅我对这个问题的回答。您可以按照本教程了解有关如何克服此问题的更多信息。

于 2012-03-10T06:10:38.820 回答
0


请使用以下函数,因为上面发布的脚本中编写的函数存在一些语法错误。

function sendIt(sendData){
$.ajax({
    url:componentURL,
    type: "POST",
    dataType:"script",
    success:function(data){
            alert(data); 
            console.log(data);
    },
    error:function(){
    alert("it's broken");
    }}
);
}
于 2012-03-10T05:50:12.667 回答