neo4j access control headers
问题 i am using neo4j REST api and doing an jquery ajax call This is my first time with REST i was trying to make a call like this: $.ajax({ url: "http://localhost:7474/db/data/cypher", accepts: "application/json; charset=UTF-8", contentType:"application/json", dataType:"json", data:{ "query" : "start n = node(*) return n", "params" : {} }, type:"POSt", success:function(data,xhr,status) { console.log(data); }, error:function(xhr,err,msg){ console.log(xhr); console.log(err); console.log(msg); } });