[文章]鸿蒙原生应用元服务开发-Web上传文件

阅读量0
0
0

Web组件支持前端页面选择文件上传功能,应用开发者可以使用onShowFileSelector()接口来处理前端页面文件上传的请求。

下面的示例中,当用户在前端页面点击文件上传按钮,应用侧在onShowFileSelector()接口中收到文件上传请求,在此接口中开发者将上传的本地文件路径设置给前端页面。

应用侧代码。

// xxx.ets

import web_webview from '@ohos.web.webview';

@Entry

@Component

struct WebComponent {

  controller: web_webview.WebviewController = new web_webview.WebviewController()

  build() {

    Column() {

      // 加载本地local.html页面

      Web({ src: $rawfile('local.html'), controller: this.controller })

        .onShowFileSelector((event) => {

            // 开发者设置要上传的文件路径

           let fileList: Array<string> = [

              'xxx/test.png',

           ]

           if(event){

              event.result.handleFileList(fileList)

           }

           return true;

        })

    }

  }

}

local.html页面代码。

<!DOCTYPE html>

<html>

<head>

    <meta charset="utf-8">

    <title>Document</title>

</head>

 

<body>

// 点击文件上传按钮

<input type="file" value="file"></br>

</body>

</html>

本文参考引用HarmonyOS官方开发文档,基于API9。

回帖

声明:本文内容及配图由入驻作者撰写或者入驻合作网站授权转载。文章观点仅代表作者本人,不代表电子发烧友网立场。文章及其配图仅供工程师学习之用,如有内容图片侵权或者其他问题,请联系本站作侵删。 侵权投诉
链接复制成功,分享给好友