https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1421141115
微信开发文档;
1、[window.close()提示 "Scripts may close only the windows that were opened by it"];
直接调用windows.close没有反应;
查看api最新接口:
wx.closeWindow();
成功
2、微信支付
https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=7_7&index=6;
此种方法无需配置wxConfig
// 用户调起支付成功后执行该方法
function onBridgeReady(){
WeixinJSBridge.invoke(
'getBrandWCPayRequest', {
"appId":"wx2421b1c4370ec43b", //公众号名称,由商户传入
"timeStamp":"1395712654", //时间戳,自1970年以来的秒数
"nonceStr":"e61463f8efa94090b1f366cccfbbb444", //随机串
"package":"prepay_id=u802345jgfjsdfgsdg888",
"signType":"MD5", //微信签名方式:
"paySign":"70EA570631E4BB79628FBCA90534C63FF7FADD89" //微信签名
},
function(res){
if(res.err_msg == "get_brand_wcpay_request:ok" ) {} // 使用以上方式判断前端返回,微信团队郑重提示:res.err_msg将在用户支付成功后返回 ok,但并不保证它绝对可靠。
}
);
}
if (typeof WeixinJSBridge == "undefined"){
if( document.addEventListener ){
document.addEventListener('WeixinJSBridgeReady', onBridgeReady, false);
}else if (document.attachEvent){
document.attachEvent('WeixinJSBridgeReady', onBridgeReady);
document.attachEvent('onWeixinJSBridgeReady', onBridgeReady);
}
}else{
onBridgeReady();
}
3、公众号内拍照调起照片:
// 需上传url
function getWxConfig() {
jQuery.ajax({
url: '/uestc/jf/platform/wechart/getConfig',
data: JSON.stringify({url: location.href.split('#')[0]}),
type: 'POST',
contentType: "application/json",
dataType: "json",
success: function (t) {
if (t == null || t == '')
alert("获取到的配置为空")
else {
configJson = t;
console.log(configJson)
wxC()
// alert(t.toString);
}
}
});
}
function wxC() {
wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: configJson.result.data.appId, // 必填,公众号的唯一标识
timestamp: configJson.result.data.timestamp, // 必填,生成签名的时间戳
nonceStr: configJson.result.data.noncestr, // 必填,生成签名的随机串
signature: configJson.result.data.signature,// 必填,签名,见附录1
jsApiList: [
'chooseImage',
'uploadImage'
] // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
});
}
4、 上传图片需要将serverId.toString
网友评论