有時候單純為了方便做個簡單統計或紀錄的東西,用久了就會被要求製作一個後台介面,弄到最後還要找DB、刻介面等等

但如果利用Google Spreadsheet就可以省掉後台這一部份,直接透過Google提供的方法取得JSON格式的內容

操作步驟
1.建立Spreadsheet
2.檔案→發佈到網頁(網址中會有key)
3.取得JSON
JSONP

$.ajax({
	type: "get",
	url: "https://spreadsheets.google.com/feeds/list/YOUR_KEY/od6/public/values?alt=json-in-script&callback=?",
	dataType: "jsonp",
	success: function(json){
		console.log(json);
	}
});

JSON(Javascript)

$.getJSON("https://spreadsheets.google.com/feeds/list/YOUR_KEY/od6/public/values?alt=json",function(data){
	console.log(data);
});
Categories: Share