cordova-plugin-x-socialsharing 插件修改

前段时间公司让写一个分享邮件的功能 主要是把文件分享给特定的用户 于是就考虑用cordova-plugin-x-socialsharing这个插件来做
后来发现不行 不能够指定账户分享文件

我在那个插件基础上做了修改 详情:https://github.com/qwerqwermhc/cordova-plugin-x-socialsharing

this.socialSharing.shareViaEmail( 'How are you? Nice greetings from Leipzig', 'pdf', [ this.email], [], [], [ this.filepath]).then(() => {
// !
console.log(JSON.stringify( "Success"));
}).catch((error) => {
console.log(JSON.stringify( "ERROR:" + error));
});
代码如上this.email是接收者的邮箱 
this.filepath
这个是文件的存储位置

猜你喜欢

转载自blog.csdn.net/u012938852/article/details/80577492