|
版本3.2.1,按照步骤和要求填写,
define(function(require){
require("cordova!com.justep.cordova.plugin.weixin.v3");
var Model = function(){
this.callParent();
};
Model.prototype.modelLoad = function(event){
var weixin= navigator.weixin;
weixin.share({
message : {
title : "劳伦斯教育APP",
description : "劳伦斯国际美发进修学校",
mediaTagName : "Media Tag Name(optional)",
thumb : "http://192.168.0.210:8080/x5/UI2/lawranceMob/icon.png ", // http://YOUR_THUMBNAIL_IMAGE",
media : {
type : weixin.Type.WEBPAGE, // webpage
webpageUrl : "http://192.168.0.210:8080/x5/UI2/lawranceMob/index.w" // webpage
}
},
scene : weixin.Scene.TIMELINE
}, function(s) {
alert("success" + s);
}, function(reason) {
alert("failde" + reason);
});
};
return Model;
});
配置的appid并没有错,
但是商户id没有。
应用服务器名也是用的微信中的那个。
返回OK但是不知道为什么一闪而过 |
|