SPARQL - JS - JQUERY 使用此 JavaScript 类,您可以轻松创建 sparql 请求,并向端点执行请求。
例子
这是一个快速简便的请求。其他示例在 index.html 文件中。
var request = new SPARQL();
request.info = \"hello world\";
request.variable(\"?x\").variable(\"?y\").where(\"<http>\", \"?x\", \"?y\");
request.execute(function(data, info){
console.log(data); //Json by default
console.log(info); //Print hello world
});
</http>
方法说明:pref
暂无评论