위챗 애플릿 기초 라이브러리 버전 크기 판단
wx.getSystemInfo({
success: function (res) {
var version = res.SDKVersion;
version = version.replace(/\./g, "")
console.log(version)
if (parseInt(version)<230) {// 230
wx.showModal({
title: ' ',
content: ' , !',
showCancel : false,
success(res) {
if (res.confirm) {
console.log(' ')
} else if (res.cancel) {
console.log(' ')
}
}
})
}
}
상판단 2.3.0 버전의 기초 라이브러리, 이 버전 이상은 wx를 호출할 수 있습니다.getSetting() 권한은 다음과 같습니다.
wx.getSetting({
success(res) {
if (!res.authSetting['scope.camera']) { //
wx.authorize({
scope: 'scope.camera',
success() {
console.log(' ')
}, fail() {
wx.showModal({
title: ' ',
content: ' , ',
showCancel: false,
success(res) {
if (res.confirm) {
console.log(' ')
wx.openSetting({
success: (res) => {
if (!res.authSetting['scope.camera']) {
wx.authorize({
scope: 'scope.camera',
success() {
console.log(' ');
}, fail() {
console.log(' ');
}
})
}
},
fail: function () {
console.log(" ");
}
})
} else if (res.cancel) {
console.log(' ')
}
}
})
}
})
};
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
유니앱, 위챗 애플릿에서 MQTT 사용 문제(1)MQTT.js는 JavaScript로 작성된 MQTT 프로토콜의 클라이언트 라이브러리로 Node에 사용할 수 있습니다.js와 브라우저.노드에서.js단은 전역 설치를 통해 명령행 연결을 사용할 수 있으며 MQTT...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.