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