关于harmonyos:Harmony自定义页面请求与前端页面调试

5次阅读

共计 2116 个字符,预计需要花费 6 分钟才能阅读完成。

一、自定义页面申请响应

Web 组件反对在利用拦挡到页面申请后自定义响应申请能力。开发者通过 onInterceptRequest() 接口来实现自定义资源申请响应。自定义申请能力能够用于开发者自定义 Web 页面响应、自定义文件资源响应等场景。

Web 网页上发动资源加载申请,应用层收到资源申请音讯。应用层结构本地资源响应音讯发送给 Web 内核。Web 内核解析应用层响应信息,依据此响应信息进行页面资源加载。

在上面的示例中,Web 组件通过拦挡页面申请“https://www.intercept.com/test.html”,在利用侧代码构建响应资源,实现自定义页面响应场景。

● 前端页面 example.html 代码。

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>example</title>
</head>
<body>
<!-- 页面资源申请 -->
<a href="https://www.intercept.com/test.html">intercept test!</a>
</body>
</html>

● 利用侧代码。

// xxx.ets
import web_webview from '@ohos.web.webview';

@Entry
@Component
struct WebComponent {controller: web_webview.WebviewController = new web_webview.WebviewController()
  responseResource: WebResourceResponse = new WebResourceResponse()
  // 开发者自定义响应数据
  @State webData: string = '<!DOCTYPE html>\n' +
  '<html>\n'+
  '<head>\n'+
  '<title>intercept test</title>\n'+
  '</head>\n'+
  '<body>\n'+
  '<h1>intercept ok</h1>\n'+
  '</body>\n'+
  '</html>'
  build() {Column() {Web({ src: $rawfile('example.html'), controller: this.controller })
        .onInterceptRequest((event) => {console.info('url:' + event.request.getRequestUrl());
          // 拦挡页面申请
          if (event.request.getRequestUrl() !== 'https://www.intercept.com/test.html') {return null;}
          // 结构响应数据
          this.responseResource.setResponseData(this.webData);
          this.responseResource.setResponseEncoding('utf-8');
          this.responseResource.setResponseMimeType('text/html');
          this.responseResource.setResponseCode(200);
          this.responseResource.setReasonMessage('OK');
          return this.responseResource;
        })
    }
  }
}

二、应用 Devtools 工具调试前端页面

Web 组件反对应用 DevTools 工具调试前端页面。DevTools 是一个 Web 前端开发调试工具,提供了调试挪动设施前端页面的能力。开发者通过 setWebDebuggingAccess() 接口开启 Web 组件前端页面调试能力,利用 DevTools 工具能够在 PC 端调试挪动设施上的前端网页。

应用 DevTools 工具,能够执行以下步骤:

  1. 1.  在利用代码中开启 Web 调试开关,具体如下:

    // xxx.ets
    import web_webview from '@ohos.web.webview';
    
    @Entry
    @Component
    struct WebComponent {controller: web_webview.WebviewController = new web_webview.WebviewController();
      aboutToAppear() {
     // 配置 web 开启调试模式
     web_webview.WebviewController.setWebDebuggingAccess(true);
      }
      build() {Column() {Web({ src: 'www.example.com', controller: this.controller})
     }
      }
    }
    
    

2.  将设施连贯上电脑,在电脑端配置端口映射,配置办法如下:

// 增加映射 
hdc fport tcp:9222 tcp:9222 
// 查看映射 
hdc fport ls

3.  在 PC 端 chrome 浏览器地址栏中输出 chrome://inspect/#devices,页面辨认到设施后,就能够开始页面调试。调试成果如下:图 1 页面调试效果图

正文完
 0