无法使用react-native-share从真实设备共享MP3文件

时间:2019-10-08 08:00:35

标签: react-native

我无法通过使用react-native-share库在React native中从真实设备共享mp3文件。它给了我一个共享失败的错误。

这是我的代码:

Sharing = async () => {
  let path = global.itmes[global.identity].path
  const Options = {
    message: 'message',
    url: "file://${path}",
    type: 'audio/mp3',
    failOnCancel: false,
  }
  await Share.open(Options)
}

0 个答案:

没有答案