当前位置:   article > 正文

鸿蒙开发-web-页面_鸿蒙api9开发,使用web组件引入在线网页,需要调用在线页面的js方法,方法已挂载

鸿蒙api9开发,使用web组件引入在线网页,需要调用在线页面的js方法,方法已挂载

鸿蒙开发-UI-图形-组件内转场动画

鸿蒙开发-UI-图形-弹簧曲线动画

鸿蒙开发-UI-交互事件-通用事件

鸿蒙开发-UI-交互事件-键鼠事件

鸿蒙开发-UI-交互事件-焦点事件

鸿蒙开发-UI-交互事件-手势事件

鸿蒙开发-UI-web

文章目录

前言

一、应用中使用前端页面JS

1.应用侧调用前端页面函数

2.前端页面调用应用侧函数

3.应用侧与前端页面数据通道

二、页面跳转以及浏览记录导航

1.历史记录导航

2.页面跳转

3.跨应用跳转

三、cookie以及数据存储

1.cookie管理

2.缓存与存储管理

2.1 Cache

2.2 Dom Storage

四、自定义页面请求响应

五、Devtools工具调试前端页面

总结


前言

上文学习了鸿蒙开发web相关的知识,了解web组件的基本概念,以及加载页面的三种方式,同时也学习了web组件的的基本属性和事件,本文将学习web的其他知识。

一、应用中使用前端页面JS

1.应用侧调用前端页面函数

应用侧可以通过runJavaScript()方法调用前端页面的JavaScript相关函数。

前端页面代码

  1. <!-- index.html -->
  2. <!DOCTYPE html>
  3. <html>
  4. <body>
  5. <script>
  6. function htmlTest() {
  7. console.info('JavaScript Hello World! ');
  8. }
  9. </script>
  10. </body>
  11. </html>

应用侧代码

  1. import web_webview from '@ohos.web.webview';
  2. @Entry
  3. @Component
  4. struct WebComponent {
  5. webviewController: web_webview.WebviewController = new web_webview.WebviewController();
  6. build() {
  7. Column() {
  8. Web({ src: $rawfile('index.html'), controller: this.webviewController})
  9. Button('runJavaScript')
  10. .onClick(() => {
  11. this.webviewController.runJavaScript('htmlTest()');
  12. })
  13. }
  14. }
  15. }

2.前端页面调用应用侧函数

通过Web组件将应用侧代码注册到前端页面中,注册完成之后,前端页面中使用注册的对象名称就调用应用侧的函数,实现在前端页面中调用应用侧方法。

注册应用侧代码有两种方式:

方式一:在Web组件初始化使用调用,使用javaScriptProxy()接口

方式二:在Web组件初始化完成后调用,使用registerJavaScriptProxy()接口

应用侧代码

  1. import web_webview from '@ohos.web.webview';
  2. class testClass {
  3. constructor() {
  4. }
  5. test(): string {
  6. return 'ArkTS Hello World!';
  7. }
  8. }
  9. @Entry
  10. @Component
  11. struct WebComponent {
  12. webviewController: web_webview.WebviewController = new web_webview.WebviewController();
  13. //step1:声明需要注册的对象
  14. @State testObj: testClass = new testClass();
  15. build() {
  16. Column() {
  17. //step2:web组件加载本地index.html页面
  18. Web({ src: $rawfile('index.html'), controller: this.webviewController})
  19. //step3:通过javaScriptProxy将对象注入到web端
  20. .javaScriptProxy({
  21. object: this.testObj,
  22. name: "testObjName",
  23. methodList: ["test"],
  24. controller: this.webviewController
  25. })
  26. //step4:通过registerJavaScriptProxy将对象注入到web端
  27. Button('Register JavaScript To Window')
  28. .onClick(() => {
  29. try {
  30. this.webviewController.registerJavaScriptProxy(this.testObj, "testObjName",
  31. ["test", "toString"]);
  32. } catch (error) {
  33. let e: business_error.BusinessError = error as business_error.BusinessError;
  34. console.error(`ErrorCode: ${e.code}, Message: ${e.message}`);
  35. }
  36. })
  37. //step5:使用registerJavaScriptProxy()接口注册方法时,注册后需调用refresh()接口生效。
  38. Button('refresh')
  39. .onClick(() => {
  40. try {
  41. this.webviewController.refresh();
  42. } catch (error) {
  43. let e: business_error.BusinessError = error as business_error.BusinessError;
  44. console.error(`ErrorCode: ${e.code}, Message: ${e.message}`);
  45. }
  46. })
  47. }
  48. }
  49. }

前端页面代码

  1. <!-- index.html -->
  2. <!DOCTYPE html>
  3. <html>
  4. <body>
  5. <button type="button" onclick="callArkTS()">Click Me!</button>
  6. <p id="demo"></p>
  7. <script>
  8. function callArkTS() {
  9. //step1: 使用注册的对象名称调用应用侧的函数
  10. let str = testObjName.test();
  11. document.getElementById("demo").innerHTML = str;
  12. console.info('ArkTS Hello World! :' + str);
  13. }
  14. </script>
  15. </body>
  16. </html>

3.应用侧与前端页面数据通道

前端页面和应用侧之间可以用createWebMessagePorts()接口创建消息端口来实现两端的通信

二、页面跳转以及浏览记录导航

1.历史记录导航

在前端页面点击网页中的链接时,Web组件默认会自动打开并加载目标网址。当前端页面替换为新的加载链接时,会自动记录已经访问的网页地址。通过forward()backward()接口向前/向后浏览上一个/下一个历史记录

  1. import web_webview from '@ohos.web.webview';
  2. @Entry
  3. @Component
  4. struct WebComponent {
  5. webviewController: web_webview.WebviewController = new web_webview.WebviewController();
  6. build() {
  7. Column() {
  8. //step1:如果accessBackward()接口会返回true,表示存在历史记录。如果accessForward()返回true,表示存在前进的历史记录。如果您不执行检查,当浏览到历史记录的末尾时,调用forward()和backward()接口时将不执行任何操作。
  9. Button('loadData')
  10. .onClick(() => {
  11. if (this.webviewController.accessBackward()) {
  12. this.webviewController.backward();
  13. return true;
  14. }
  15. })
  16. Web({ src: 'https://www.example.com/cn/', controller: this.webviewController})
  17. }
  18. }
  19. }

2.页面跳转

通过使用Web组件的onUrlLoadIntercept()接口实现点击网页中的链接跳转到应用内其他页面。

代码示例:应用首页Index.ets加载前端页面route.html,在前端route.html页面点击超链接,可跳转到应用的ProfilePage.ets页面

静态页面

  1. <!-- route.html -->
  2. <!DOCTYPE html>
  3. <html>
  4. <body>
  5. <div>
  6. <a href="native://pages/ProfilePage">个人中心</a>
  7. </div>
  8. </body>
  9. </html>

Index.ets

  1. import web_webview from '@ohos.web.webview';
  2. import router from '@ohos.router';
  3. @Entry
  4. @Component
  5. struct WebComponent {
  6. webviewController: web_webview.WebviewController = new web_webview.WebviewController();
  7. build() {
  8. Column() {
  9. Web({ src: $rawfile('route.html'), controller: this.webviewController })
  10. .onUrlLoadIntercept((event) => {
  11. let url: string = event.data as string;
  12. if (url.indexOf('native://') === 0) {
  13. //step1: 跳转应用其他页面
  14. router.pushUrl({ url:url.substring(9) })
  15. return true;
  16. }
  17. return false;
  18. })
  19. }
  20. }
  21. }

ProfilePage.ets

  1. @Entry
  2. @Component
  3. struct ProfilePage {
  4. @State message: string = 'Hello World';
  5. build() {
  6. Column() {
  7. Text(this.message)
  8. .fontSize(20)
  9. }
  10. }
  11. }

3.跨应用跳转

Web组件可以实现点击前端页面超链接跳转到其他应用

三、cookie以及数据存储

1.cookie管理

Cookie是网络访问过程中,由服务端发送给客户端的一小段数据。客户端可持有该数据,并在后续访问该服务端时,方便服务端快速对客户端身份、状态等进行识别。Web组件提供了WebCookieManager类,用于管理Web组件的Cookie信息。Cookie信息保存在应用沙箱路径下/proc/{pid}/root/data/storage/el2/base/cache/web/Cookiesd的文件中

代码示例

  1. import web_webview from '@ohos.web.webview';
  2. @Entry
  3. @Component
  4. struct WebComponent {
  5. controller: web_webview.WebviewController = new web_webview.WebviewController();
  6. build() {
  7. Column() {
  8. Button('setCookie')
  9. .onClick(() => {
  10. try {
  11. //step1:setCookie()为“www.example.com”设置单个Cookie的值“value=test”
  12. web_webview.WebCookieManager.setCookie('https://www.example.com', 'value=test');
  13. } catch (error) {
  14. console.error(`ErrorCode: ${error.code}, Message: ${error.message}`);
  15. }
  16. })
  17. Web({ src: 'www.example.com', controller: this.controller })
  18. }
  19. }
  20. }

2.缓存与存储管理

在访问网站时,网络资源请求是相对比较耗时的。开发者可以通过Cache、Dom Storage等手段将资源保持至本地,以提升访问同一网站的速度。

2.1 Cache

2.2 Dom Storage

四、自定义页面请求响应

Web组件支持在应用拦截到页面请求后自定义响应请求。通过onInterceptRequest()接口来实现自定义资源请求响应 。用于开发者自定义Web页面响应、自定义文件资源响应等场景。Web网页上发起资源加载请求,应用层收到资源请求消息。应用层构造本地资源响应消息发送给Web内核。Web内核解析应用层响应信息,根据此响应信息进行页面资源加载

前端页面

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>example</title>
  6. </head>
  7. <body>
  8. <!-- 页面资源请求 -->
  9. <a href="https://www.example.com/test.html">intercept test!</a>
  10. </body>
  11. </html>

应用侧代码

  1. import web_webview from '@ohos.web.webview'
  2. @Entry
  3. @Component
  4. struct WebComponent {
  5. controller: web_webview.WebviewController = new web_webview.WebviewController()
  6. responseResource: WebResourceResponse = new WebResourceResponse()
  7. //step2:构造自定义响应数据
  8. @State webdata: string = "<!DOCTYPE html>\n" +
  9. "<html>\n"+
  10. "<head>\n"+
  11. "<title>intercept test</title>\n"+
  12. "</head>\n"+
  13. "<body>\n"+
  14. "<h1>intercept test</h1>\n"+
  15. "</body>\n"+
  16. "</html>"
  17. build() {
  18. Column() {
  19. Web({ src: $rawfile('index.html'), controller: this.controller })
  20. .onInterceptRequest((event?: Record<string, WebResourceRequest>): WebResourceResponse => {
  21. if (!event) {
  22. return new WebResourceResponse();
  23. }
  24. let mRequest: WebResourceRequest = event.request as WebResourceRequest;
  25. console.info('TAGLee: url:'+ mRequest.getRequestUrl());
  26. //step1:Web组件拦截页面请求“https://www.example.com/test.html”,如果加载的url判断与目标url一致则返回自定义加载结果webdata
  27. if(mRequest.getRequestUrl() === 'https://www.example.com/test.html'){
  28. // 构造响应数据
  29. this.responseResource.setResponseData(this.webdata);
  30. this.responseResource.setResponseEncoding('utf-8');
  31. this.responseResource.setResponseMimeType('text/html');
  32. this.responseResource.setResponseCode(200);
  33. this.responseResource.setReasonMessage('OK');
  34. return this.responseResource;
  35. }
  36. return;
  37. })
  38. }
  39. }
  40. }

五、Devtools工具调试前端页面

Web组件支持使用DevTools工具调试前端页面。DevTools是一个 Web前端开发调试工具,提供了电脑上调试移动设备前端页面的能力。通过setWebDebuggingAccess()接口开启Web组件前端页面调试能力,利用DevTools工具可以在PC端调试移动设备上的前端网页

step1:在应用代码中开启Web调试开关

本地html文件

应用侧代码

step2:将设备连接上电脑,在电脑端配置端口映射

  1. // 添加映射
  2. hdc fport tcp:9222 tcp:9222
  3. // 查看映射
  4. hdc fport ls

step3:在电脑端chrome浏览器地址栏中输入chrome://inspect/#devices,页面识别到设备后,就可以开始页面调试

模拟器中页面显示

电脑端chrome浏览器地址栏中输入chrome://inspect/#devices

页面识别到设备,页面调试


总结

本文详细学习了鸿蒙开发web中应用侧与前端页面的JS交互方式,同时学习页面跳转以及浏览器记录导航、页面缓存以及自定义页面返回处理,最后学习了Devtools工具的调试方式,下文将学习ArkTs语言基础类库。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/860643
推荐阅读
相关标签
  

闽ICP备14008679号