这是根据提供的示例验证geoJSON的代码:
function processSuccess(data){
if(data.status==="ok") console.log("You just posted some valid geoJSON");
else if(data.status==="error") console.log("There was a problem with your geoJSON "+data.message);
}
function processError(data){
console.log("The AJAX request could not be successfully made");
}
$.ajax({
url: 'http://geojsonlint.com/validate',
type: 'POST',
data: geo,
dataType: 'json',
success: processSuccess,
error: processError
});
我正在尝试geoJSON
使用以下代码进行验证:
var getXHR=function()
{
try{return new XMLHttpRequest();} catch(e){}
try{return new ActiveXObject("Msxml2.XMLHTTP.6.0");} catch(e){}
try{return new ActiveXObject("Msxml2.XMLHTTP.3.0");} catch(e){}
try{return new ActiveXObject("Microsoft.XMLHttp");} catch(e){}
console.err("Could not find XMLHttpRequest");
};
var makeRequest=function(uri,data)
{
//make the actual XMLHttpRequest
var xhr=getXHR();
if('withCredentials' in xhr) console.log("Using XMLHttpRequest2 to make AJAX requests");
xhr.open("POST",uri,true);
xhr.onreadystatechange=function(){
if(xhr.readyState===4)
{
if(xhr.status===200 || xhr.status===304)
{
var response=JSON.parse(xhr.responseText);
if(response.status==="ok") console.log("You just posted some valid geoJSON");
else if(response.status==="error") console.log("There was a problem with your geoJSON "+response.message);
else console.log("Response has been recieved using "+response.status);
}
}
else console.log("Response recieved with status "+xhr.status);
};
xhr.setRequestHeader("Content-Type","application/json");
xhr.setRequestHeader("X-Requested-With","XMLHttpRequest");
//supported in new browsers...do JSONP based stuff in older browsers...figure out how
xhr.setRequestHeader("Access-Control-Allow-Origin","http://geojsonlint.com/");
xhr.setRequestHeader("Accept","application/json");
xhr.send(JSON.stringify(data));
};
在此,我提出实际要求:
makeRequest('http://geojsonlint.com/validate',geo);
我在Chrome控制台中收到此错误:
Using XMLHttpRequest2 to make AJAX requests gmaps_geoJSON.js:14
Failed to recieve response gmaps_controls.js:25
XMLHttpRequest cannot load http://geojsonlint.com/validate. Request header field
Access-Control-Allow-Origin is not allowed by Access-Control-Allow-Headers.
这是与请求相关的数据:
Request URL:http://geojsonlint.com/validate
Request Method:OPTIONS
Status Code:200 OK
Request Headers
Accept:*/*
Accept-Encoding:gzip,deflate,sdch
Accept-Language:en-US,en;q=0.8,en-AU;q=0.6,en-GB;q=0.4,te;q=0.2
Access-Control-Request-Headers:access-control-allow-origin, accept, x-requested-with, content-type
Access-Control-Request-Method:POST
Connection:keep-alive
DNT:1
Host:geojsonlint.com
Origin:http://localhost:8180
Referer:http://localhost:8180/GoogleMapsLoadingTest/MainService? scenario=c&operation=1&objkey=000011&objtype=EQUI&gisuniqkey=hgsfsfsfs2436353535
User-Agent:Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/34.0.1847.116 Safari/537.36
Response Headers
Access-Control-Allow-Headers:Origin,Content-Type,Accept
Access-Control-Allow-Methods:POST,GET,OPTIONS,PUT,DELETE
Access-Control-Allow-Origin:*
Connection:keep-alive
Content-Encoding:gzip
Content-Type:text/html; charset=utf-8
Date:Thu, 24 Apr 2014 14:48:57 GMT
Server:nginx
Transfer-Encoding:chunked
您不应该将其设置Access-Control-Allow-Origin
为请求标头,而是响应标头。
您可以从响应中看到服务器将接受哪些请求标头:
Access-Control-Allow-Headers:Origin,Content-Type,Accept
错误消息告诉您:
Request header field Access-Control-Allow-Origin is not allowed
似乎也可能不接受X-Requested-With
。
我真的很惊讶,因为看起来太低级了,失去了http代理的简单性,发出http请求似乎应该放在核心库集中(我意识到这是非常主观的)。 删除HTTP代理的理由是什么?它不符合Clojure的核心哲学吗?对于用于基本HTTP请求的最佳库有什么建议?
问题内容: 我想使用JavaScript中的XMLHttpRequest发送一些数据。 说我的HTML形式如下: 如何在JavaScript中使用XMLHttpRequest编写等效项? 问题答案: 下面的代码演示了如何执行此操作。
问题内容: 我读了一些将jsons发布到服务器的示例。 有人说: OkHttp是Java提供的HttpUrlConnection接口的实现。它提供用于编写内容的输入流,并且不知道(或不在乎)内容的格式。 现在,我想用名称和密码的参数对URL进行常规发布。 这意味着我需要自己将名称和值对编码为流? 问题答案: 当前接受的答案已过期。现在,如果您想创建一个发布请求并向其中添加参数,则应该使用Mul
问题内容: 我有以下JSON响应 我为GSON请求创建了以下类。如何发出GSON请求并使用截击请求存储响应的值。GSON请求应该是什么样的? 问题答案: 只需按以下步骤创建一个类(取自Android Developer Docs ) 现在,在您的类文件(活动)中,只需按如下所示调用此类: 我们还需要创建两种方法- -收到来自的回复 -处理任何错误 如下: 和 我希望这会有意义。
haspart(x,FruitA) HasShape(x,Round) 我检索我的个人所属的每个类(在本例中,这应该包括SpeciesA)。 我根本不确定应该使用什么:我可以使用SWRL Species(?x)^HasPart(?x,Fruit)^HasShape(?x,“$round$”)还是应该使用Reasoner?
问题内容: 我想使用Tor向网页发出多个GET请求。我想为每个请求使用不同的ipaddress。 使用此,我提出了一个请求。如何更改ipaddress来做另一个? 问题答案: 这是您要使用的代码(使用来下载词干包) 祝你好运,希望能成功。