위챗 애플릿 선택 위챗 자체 주소 사용자 권한 부여 선택 거부

1931 단어
//  
    addAddr:function () {
        wx.chooseAddress({
            success: function (res) {
                self.setData({
                    addrInfo:res   // data addrInfo 
                });
            },
            fail:()=>{
                 this.openConfirm()   //  , , , 
            }
        })
    },                                

  
//  
    openConfirm: function () {
        wx.showModal({
            content: ' , ?',
            confirmText: " ",
            cancelText: " ",
            success: function (res) {
                if (res.confirm) {
                    wx.openSetting({
                        success: (res) => { }   // 
                    })
                } else {
                    console.log(' ')
                }
            }
        });
    },

좋은 웹페이지 즐겨찾기