收藏
回答

wx.addFileToFavorites收藏文件后无法打开文件?

文件收藏成功后,但没有正确的保存文件,请问如何修改了?

回答关注问题邀请回答
收藏

4 个回答

  • sober   小k
    sober 小k
    2023-12-08

    怎么样你们解决了吗,我的情况和你一样,

    wx.downloadFile({

          url: this.data.formInfo?.filePath,

          success(response) {

            wx.addFileToFavorites({

              filePath: response.tempFilePath,

              fileName: _that.data.formInfo.fileName,

              success(resp) {

                console.log(resp);

              },

              fail: console.error

            });

          },

          fail: console.error

        });


    在收藏列表打不开这个文件,转发给好友后在聊天框就能打开了

    2023-12-08
    有用
    回复
  • 错错的小兔
    错错的小兔
    2021-12-10

    请问这个问题解决了吗

    2021-12-10
    有用
    回复
  • .
    .
    2021-05-12
    wx.downloadFile({
      url: 'https://www.zgfujian.cn/static/excel/zg_wechat_projects.xlsx',
      success(resp) {
    	console.log(resp);
    	wx.addFileToFavorites({
    		filePath: resp.tempFilePath,	
    		fileName:"zg_wechat_projects.xlsx",
    		success(resp) {
    			console.log(resp);
    		},
    		fail: console.error
    	});
      },
      fail: console.error
    });
    
    2021-05-12
    有用
    回复
  • Z
    Z
    2021-05-12

    提供一个复现代码片段呗

    2021-05-12
    有用
    回复 4
    • .
      .
      2021-05-12
      wx.downloadFile({
          url: 'https://www.zgfujian.cn/static/excel/zg_wechat_projects.xlsx',
          success(resp) {
           console.log(resp);
           wx.addFileToFavorites({
            filePath: resp.tempFilePath,
           
            fileName:"zg_wechat_projects.xlsx",
            success(resp) {
             console.log(resp);
            },
            fail: console.error
           });
          },
          fail: console.error
         });
      2021-05-12
      回复
    • Z
      Z
      2021-05-12回复.
      https://developers.weixin.qq.com/s/D3UQ7em578qP  看一下
      2021-05-12
      回复
    • .
      .
      2021-05-12回复Z
      好的,我试一下
      2021-05-12
      回复
    • sober   小k
      sober 小k
      2023-12-08回复Z
      没有用呢,提示WAServiceMainContext.js:2 Error: invalid path
      2023-12-08
      回复
登录 后发表内容