javascript-library react native share出现Get错误
发布时间:2022-09-06 04:49:59 333
相关标签: # 前端
我正在尝试分享一幅图片。我安装react本机共享
npm i react-native-share --save
然后导入
import Share from 'react-native-share';
但当我尝试使用此库时:
const Testing = () => {
let shareImage = {
title: 'React Native',
url: 'https://static.wikia.nocookie.net/comicdc/images/d/d9/Batman_jim_lee.jpg/revision/latest/scale-to-width-down/280?cb=20140708014954&path-prefix=es'
};
Share.open(shareImage)
.then((res) => {
console.log(res);
})
}
我得到这个错误未捕获的TypeError:无法读取未定义的属性(读取“FACEBOOK”)删除时错误消失:
Share.open(shareImage)
.then((res) => {
console.log(res);
})
坦率地说,我不知道该怎么办,我已经找到了其他方法(例如世博会)来分享react native的图片,但没有任何效果
提前感谢
特别声明:以上内容(图片及文字)均为互联网收集或者用户上传发布,本站仅提供信息存储服务!如有侵权或有涉及法律问题请联系我们。
举报