GerryIsWarrior / ajax

ajax设计方案
MIT License
264 stars 77 forks source link

ajax.1.9.js文件与微信jweixin-1.2.0文件会导致冲突 #8

Closed SimpleSimple closed 6 years ago

SimpleSimple commented 6 years ago

这两个文件引入会导致微信分享无法调起 env: android

SimpleSimple commented 6 years ago

wx.config({
debug: true, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
appId: "",
timestamp: "",
nonceStr: "",
signature: "",
jsApiList: [
'checkJsApi',
'onMenuShareTimeline',
'onMenuShareAppMessage',
]
});

wx.ready(function () {
wx.checkJsApi({
jsApiList: ['onMenuShareTimeline', 'onMenuShareAppMessage'],
success: function (res) {
alert('res => ' + JSON.stringify(res));
},
complete: function (res) {
alert('complete res => ' + JSON.stringify(res));
},
fail: function (res) {
alert('fail res => ' + JSON.stringify(res));
},
trigger: function (res) {
alert('trigger res => ' + JSON.stringify(res));
}
});
//document.querySelector('#onMenuShareAppMessage').onclick = function () {
wx.onMenuShareAppMessage({
title: '互联网之子',
desc: '在长大的过程中,我才慢慢发现,我身边的所有事,别人跟我说的所有事,那些所谓本来如此,注定如此的事,它们其实没有非得如此,事情是可以改变的。更重要的是,有些事既然错了,那就该做出改变。',
link: '',
imgUrl: '',
trigger: function (res) {
// 不要尝试在trigger中使用ajax异步请求修改本次分享的内容,因为客户端分享操作是一个同步操作,这时候使用ajax的回包会还没有返回
alert('用户点击发送给朋友');
},
success: function (res) {
alert('已分享');
},
cancel: function (res) {
alert('已取消');
},
fail: function (res) {
alert(JSON.stringify(res));
}
});
// alert('已注册获取“发送给朋友”状态事件');
//}
});```
GerryIsWarrior commented 6 years ago

你重新用npm获取一下,因为在代码里写了Array原型的兼容方案,修改了原型,导致npm检查的时候一直报问题,现在已经去除,你再装一下最新的包试试,我本地测试已经没问题了

SimpleSimple commented 6 years ago

你重新用npm获取一下,因为在代码里写了Array原型的兼容方案,修改了原型,导致npm检查的时候一直报问题,现在已经去除,你再装一下最新的包试试,我本地测试已经没问题了

npm i ajax-js 获取到的是1.7版本这个对吗

GerryIsWarrior commented 6 years ago

现在npm最新的是1.0.15,npm是从1.0.X开始迭代版本号的。你不用npm,直接拉js文件,就直接到dev上拉,现在是 ajax.1.9.1.js