0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

blocklyでobjectを動かす。その17

Posted at

概要

blocklyでobjectを動かす。
bdpediaからsparqlで取得してみる。

stageを書く。

function dbpedia(query) {
	var endpoint = "http://ja.dbpedia.org/sparql";
	query = "SELECT DISTINCT * WHERE { dbpedia-ja:" + query + " dbpedia-owl:abstract ?abstract .}"
	var xhr = new XMLHttpRequest();
	xhr.onreadystatechange = function() {
		if (xhr.readyState == 4 && xhr.status == 200)
		{
			var json = JSON.parse(xhr.responseText);
			alert(json.results.bindings[0].abstract.value)
		}
	};
	xhr.open("POST", endpoint, true);
	xhr.setRequestHeader("Accept", "application/sparql-results+json");
	xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
	xhr.send("query=" + encodeURIComponent(query));
}

objectを書く。

Blockly.Blocks.dbpedia = {
	init: function() {
		this.jsonInit({
		message0: "dbpedia %1",
		args0: [{
			type: "input_value",
			name: "TEXT"
		}],
		previousStatement: null,
		nextStatement: null,
		style: "text_blocks",
		tooltip: Blockly.Msg.TEXT_PRINT_TOOLTIP,
		helpUrl: Blockly.Msg.TEXT_PRINT_HELPURL
	})
}};

Blockly.JavaScript.dbpedia = function(a) {
    return "dbpedia(" + (Blockly.JavaScript.valueToCode(a, "TEXT", Blockly.JavaScript.ORDER_NONE) || "''") + ");\n"
};

フローを書く。

image

成果物

以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?