query json file

Costas

Administrator
Staff member
Query, manipulate and manage JSON data effortlessly.
http://danski.github.io/spahql/

 

 

Retrieves values from JSON objects for data binding (+nodeJS)
http://github.com/mmckegg/json-query

 

 

2007

reference
http://orangevolt.blogspot.gr/2012/12/8-ways-to-query-json-structures.html


homepage - http://www.trentrichardson.com/jsonsql/

JavaScript:
<script src="dump.js"></script>
<script src="//code.jquery.com/jquery-1.11.0.min.js"></script>
<script src='jsonsql-0.1.js']</script>

//button click
$('#btn').on('click', function(e) {
	$.getJSON("gfonts.json", function(json){
		
		dump(jsonsql.query("select * from json where (items.table=='wood') ",json));
		
	});
});
 
Top