微信分享总是闪一下却没办法跳到微信界面,使用真机调试的方法,出现下面的问题,报一个错:No Content-Security-Policy meta tag found. Please add one when using the cordova-plugin-whitelist plugin. 请问怎么解决,谢谢大神们的帮助
是我的代码
Model.prototype.button7Click = function(event){
function success(result) {
alert(JSON.stringify(result));
}
function error(result) {
alert(JSON.stringify(result));
}
navigator.weixin.share({
message : {
title : "WeX5开发指南",
description : "分享到微信",
mediaTagName : "Media Tag Name(optional)",
thumb : "http://www.190cf.com/taobao/v-iiuyMr-zh_CN-/demo/taobao/main/img/menu2.png",
media : {
type: navigator.weixin.Type.WEBPAGE, // webpage
webpageUrl : "https://www.baidu.com/"
// webpage
}
},
// scene : navigator.weixin.Scene.TIMELINE
});
};