当前位置:   article > 正文

【HarmonyOS】【ARK UI】鸿蒙JS怎么使用Web组件展示网页内容_华为鸿蒙穿戴设备js开发如何加载网页

华为鸿蒙穿戴设备js开发如何加载网页

 在我们的日常开发中,经常会遇到加载网页的场景,今天我们来介绍一下如何用web组件展示网页内容。
参考网址:
文档中心
代码实现:
config.json

  1. "deviceConfig": {
  2. "default": {
  3. "network": {
  4. "cleartextTraffic": true
  5. }
  6. }
  7. },
  8. "reqPermissions": [
  9. {
  10. "name": "ohos.permission.INTERNET"
  11. },
  12. ],

html

  1. <div class="container">
  2. <web src="https://www.baidu.com/"
  3. ></web>
  4. </div>

css

  1. .container {
  2. display: flex;
  3. justify-content: center;
  4. align-items: center;
  5. left: 0px;
  6. top: 0px;
  7. width: 454px;
  8. height: 454px;
  9. }
  10. .title {
  11. font-size: 30px;
  12. text-align: center;
  13. width: 200px;
  14. height: 100px;
  15. }

js

  1. export default {
  2. data: {
  3. title: 'World'
  4. },
  5. pagestart(msg){
  6. console.log("pagestart===>>"+msg.url)
  7. },
  8. pagefinish(msg){
  9. console.log("pagefinish===>>"+msg.url)
  10. },
  11. error(msg){
  12. console.log("error=url==>>"+msg.url+"==errorCode==>"+msg.errorCode+"==description==>"+msg.description)
  13. }
  14. }

运行效果:

cke_1579.png

 

欲了解更多更全技术文章,欢迎访问https://developer.huawei.com/consumer/cn/forum/?ha_source=zzh 

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

闽ICP备14008679号