后台上传完成后如何触发方法?

发布于 2025-01-11 21:50:56 字数 175 浏览 0 评论 0原文

我需要我的应用程序对文本文件进行加密,并在使用 flutter uploader 下载该文件后将其保存到本地存储。 那么我该如何使用我的 dart 函数来加密和保存文件呢?

I need my application to encrypt a text file and save it to local storage after downloading it using the flutter uploader.
so how can I use my dart function that encrypts and save files?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

隔岸观火 2025-01-18 21:50:56

你可以像这样添加then

final uploader = FlutterUploader();

    final taskId = await uploader.enqueue(
        url: "your upload link", 
        method: UploadMethod.POST, 
        headers: {"apikey": "api_123456", "userkey": "userkey_123456"},
        data: {"name": "john"}, 
        showNotification: false, 
        tag: "upload 1").then( (data)
        {
          //your code here
        }
    );

you can add then like this:

final uploader = FlutterUploader();

    final taskId = await uploader.enqueue(
        url: "your upload link", 
        method: UploadMethod.POST, 
        headers: {"apikey": "api_123456", "userkey": "userkey_123456"},
        data: {"name": "john"}, 
        showNotification: false, 
        tag: "upload 1").then( (data)
        {
          //your code here
        }
    );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文