美文网首页
小程序入门学习11--云开发04

小程序入门学习11--云开发04

作者: 阿墨呦 | 来源:发表于2020-02-19 15:20 被阅读0次

    1 设置位置

    ....
    pageData:{
        locationObj:{}
      },
      ........
     //获取位置
      //Cannot read property 'pageData' of undefined;at api chooseLocation success callback function 有可能是在回调函数内使用this
      
      chooseLocation:function(e){
        wx.chooseLocation({
          success:res=> {
            let locationObj = {
              latitude:res.latitude,
              longitude: res.longitude,
              name: res.name,
              address:res.address
            }
            this.pageData.locationObj = locationObj
          },
          
        })
      }
    
     <van-cell
          wx:if="{{task.location}}"
          title="位置"
          border="{{false}}" 
          value="{{task.location.name}}"/>
    

    领取限量云产品优惠

    相关文章

      网友评论

          本文标题:小程序入门学习11--云开发04

          本文链接:https://www.haomeiwen.com/subject/hayafhtx.html