• 正文
  • 相關(guān)推薦
申請入駐 產(chǎn)業(yè)圖譜

AWTK-WEB 快速入門(4) - JS Http 應(yīng)用程序

01/23 13:40
670
加入交流群
掃碼加入
獲取工程師必備禮包
參與熱點資訊討論

XMLHttpRequest改變了Web應(yīng)用程序服務(wù)器交換數(shù)據(jù)的方式,fetch是其繼任者。本文介紹一下如何使用JS語言開發(fā)AWTK-WEB應(yīng)用程序,并用fetch訪問遠(yuǎn)程數(shù)據(jù)。

用?AWTK?Designer?新建一個應(yīng)用程序

先安裝 AWTK Designer:

https://awtk.zlg.cn/web/index.html

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. 在?AWTK?Designer?中,執(zhí)行“打包”?“編譯”?“模擬運行”

正常情況下可以看到如下界面:

點擊“關(guān)閉”按鈕,退出應(yīng)用程序。

編寫配置文件

具體格式請參考,特殊平臺編譯配置:

https://github.com/zlgopen/awtk/blob/master/docs/build_config.md

這里給出一個例子,可以在此基礎(chǔ)上進(jìn)行修改,該文件位于:

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)用程序

進(jìn)入 awtk-web 目錄,不同平臺使用不同的腳本編譯:

    Windows?平臺
./build_win32.sh examples/AwtkApplicationJSHttp/build.json release
./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元起

致遠(yuǎn)電子

致遠(yuǎn)電子

廣州致遠(yuǎn)電子股份有限公司成立于2001年,注冊資金5000萬元,國家級高新技術(shù)認(rèn)證企業(yè),廣州市高端工控測量儀器工程技術(shù)研究開發(fā)中心,Intel ECA全球合作伙伴和微軟嵌入式系統(tǒng)金牌合作伙伴。

廣州致遠(yuǎn)電子股份有限公司成立于2001年,注冊資金5000萬元,國家級高新技術(shù)認(rèn)證企業(yè),廣州市高端工控測量儀器工程技術(shù)研究開發(fā)中心,Intel ECA全球合作伙伴和微軟嵌入式系統(tǒng)金牌合作伙伴。收起

查看更多

相關(guān)推薦

登錄即可解鎖
  • 海量技術(shù)文章
  • 設(shè)計資源下載
  • 產(chǎn)業(yè)鏈客戶資源
  • 寫文章/發(fā)需求
立即登錄