導(dǎo)讀
XMLHttpRequest改變了Web應(yīng)用程序與服務(wù)器交換數(shù)據(jù)的方式,fetch是其繼任者。本文介紹一下如何使用JS語言開發(fā)AWTK-WEB應(yīng)用程序,并用fetch訪問遠程數(shù)據(jù)。
用AWTKDesigner新建一個應(yīng)用程序
先安裝 AWTK Designer
1.新建應(yīng)用程序
這里假設(shè)應(yīng)用程序的名稱為 AwtkApplicationJSHttp,后面會用到,如果使用其它名稱,后面要做相應(yīng)修改。
2. 編寫代碼
2.1 刪除 src 目錄下全部文件(留著也可以,只是看起來比較亂),在 src 目錄創(chuàng)建 js 目錄。
2.2 在 src/js 下創(chuàng)建 application.js ,內(nèi)容如下:
function applicationInit() { home_page_open();}
applicationInit()
2.2 添加事件處理函數(shù)??梢詤⒖枷旅娴拇a:
async function on_update_clicked(evt) { var e = TPointerEvent.cast(evt); var widget = TButton.cast(e.target);
const win = widget.getWindow(); const url = "http://localhost:8080/AwtkApplicationJSHttp/res/assets/default/raw/data/weather.json";
try { const response = await fetch(url); if (!response.ok) { throw new Error("Network response was not ok " + response.statusText); } const json = await response.json(); win.setChildText("city", json.cityInfo.city); win.setChildText("wendu", json.data.wendu); win.setChildText("ganmao", json.data.ganmao); win.setChildText("quality", json.data.quality); win.setChildText("shidu", json.data.shidu); win.setChildTextWithDouble("pm25", "%.0f", json.data.pm25); } catch (error) { console.error("There was a problem with the fetch operation:", error); }}
function home_page_open() { var win = TWindow.open("home_page"); var update = win.lookup("update", true);
update.on(TEventType.CLICK, on_update_clicked);
win.layout();}
注意:控件的名稱一定要和 home_page.xml 保持一致。
3. 在AWTKDesigner中,執(zhí)行“打包”“編譯”“模擬運行”
正常情況下可以看到如下界面:
點擊“關(guān)閉”按鈕,退出應(yīng)用程序。
編寫配置文件
具體格式請參考,特殊平臺編譯配置
這里給出一個例子,可以在此基礎(chǔ)上進行修改,該文件位于:
examples/AwtkApplicationJSHttp/build.json
{ "name": "AwtkApplicationJSHttp", "version": "1.0", "app_type":"js", "author": "xianjimli@hotmail.com", "copyright": "Guangzhou ZHIYUAN Electronics Co.,Ltd.", "themes":["default"], "sources": [ "src/js/*.js" ]}
編譯 WEB 應(yīng)用程序
進入 awtk-web 目錄,不同平臺使用不同的腳本編譯:
- Windows平臺
./build_win32.sh examples/AwtkApplicationJSHttp/build.json release
- Linux平臺
./build_linux.sh examples/AwtkApplicationJSHttp/build.json release
- MacOS平臺
./build_mac.sh examples/AwtkApplicationJSHttp/build.json release
請根據(jù)應(yīng)用程序所在目錄,修改配置文件的路徑。
運行
1. 正常啟動
./start_web.sh
2. 調(diào)試啟動
start_web_debug.sh
3. 用瀏覽器打開 URL:http://localhost:8080/AwtkApplicationJSHttp
點擊“更新”按鈕,可以看到數(shù)據(jù)更新。
圖像顯示應(yīng)用芯片ZMP110X
硬件高集成化
豐富的多媒體特性
廣泛的應(yīng)用場景
參考價格:45元起
-
Web
+關(guān)注
關(guān)注
2文章
1269瀏覽量
69611 -
應(yīng)用程序
+關(guān)注
關(guān)注
38文章
3291瀏覽量
57823 -
awtk
+關(guān)注
關(guān)注
0文章
46瀏覽量
242
發(fā)布評論請先 登錄
相關(guān)推薦
評論