2009年7月20日 星期一

Google Gears API 初入門實做

Google Gears 提供了離線瀏覽的功能,像 GMail, Google reader 等已經支援這種功能.

除了使用Google 自家東西的離線瀏覽功能,他還提供了開發的方式,供開發者自行開發離線的網頁服務


雖然 google 的網頁寫得還蠻清楚的,但還是自己實做一遍記錄下來映像比較深刻

官網所建議的入門基礎
  • Ability to edit basic JavaScript
  • Ability to publish files to the HTTP server that hosts your files
  • The static files that you want to enable for offline viewing
  • Gears is available for Windows, Windows Mobile (IE Mobile, Opera Mobile), Mac (Firefox, Safari), Linux and Android


需要下載的檔案



Sample Getting Start

1. 安裝 Gears
2. 檢查是否有安裝 Gears
下載 gears_init.js

加入以下code 在head之間,如此便會檢查是否有安裝google Gears,若沒有則跳轉到安裝頁面

<script src="gears_init.js"></script>
<script>
if (!window.google || !google.gears) {
location.href = "http://gears.google.com/?action=install&message=<your welcome message>" +
"&return=<your website url>";
}
</script>

沒有留言: