有人推荐科尔多瓦社交共享插件吗?我使用的是Onsen + Vue + Cordova,但是没有运气,我找不到任何好的插件,尝试了此social sharing plugin
docker run -d --name "kentucky_api" -p 83:83 -p 81:81 -e DB_ADDRESS="10.27.0.1"
-v "J:\Docker\Folder\Configs\project\Public\":"C:\inetpub\publicapi\app_data\configs"
-v "J:\Docker\Folder\Configs\project\Internal":"c:\inetpub\internal\app_data\configs" company.azurecr.io/project/repo:2019.04.16.15
然后在温泉操作表上,在操作按钮上单击
cordova plugin add cordova-plugin-x-socialsharing
cordova prepare
然后做methods : {
shareto(){
const _self = this;
window.plugins.socialsharing.shareViaFacebook(
'<p>test</p>',
this.listdata.logo_source,
this.listdata.url,
function(){
alert('Success');
},
function(errormsg){
alert(errormsg);
}
);
this.actionSheetVisible = false;
},
}
,将分发文件复制到npm run build
文件夹中
做了cordova www
做了cordova platform add android
这是从cordova emulate android
捕获错误时引发的结果
有什么帮助,有想法吗?