收藏
回答

在腾讯地图中搜索门店

框架类型 问题类型 操作时间 AppID
小程序 Bug 2019-01-14 wx7ce993e455d4730a

- 当前 Bug 的表现(可附上截图){"districtid":‘"440305","keyword":"吉野家",}  搜不到数据, {"errcode":0,"errmsg":"ok","data":{"item":[]}}  


- 预期表现


- 复现路径


- 提供一个最简复现 Demo


最后一次编辑于  2019-01-14
回答关注问题邀请回答
收藏

4 个回答

  • RedHood
    RedHood
    2019-01-14

    麻烦给个相关的代码片段(https://developers.weixin.qq.com/miniprogram/dev/devtools/minicode.html),我们定位下问题

    2019-01-14
    有用
    回复 1
    • Hush
      Hush
      2020-04-08
      老哥解决了吗,我也遇见这个问题了
      2020-04-08
      回复
  • 牧秦
    牧秦
    2020-06-05

    这个api的文档再哪里啊,找不到!!麻烦提供下

    2020-06-05
    有用 1
    回复
  • Hush
    Hush
    2020-04-07

    我也遇见这个问题了楼主解决了吗

    2020-04-07
    有用
    回复
  • A~就是你
    A~就是你
    2019-01-15

    http://wx.bilalipay.com/wxvipcard/scan/search?wid=87   用这个接口访问。

    6.在腾讯地图中搜索门店

    请求方式: POST(请使用https协议)
    https://api.weixin.qq.com/wxa/search_map_poi?access_token=TOKEN

    //在腾讯地图中搜索门店

    const GET_POI_UID = 'https://api.weixin.qq.com/wxa/search_map_poi?';


    public function searchMapPoi($data){
      if (!$this->access_token && !$this->checkAuth()) return false;
      $result = $this->http_post(self::GET_POI_UID.'access_token='.$this->access_token,self::json_encode($data));
      if ($result)
      {
         $json = json_decode($result,true);
         if (!$json || !empty($json['errcode'])) {
            $this->errCode = $json['errcode'];
            $this->errMsg = $json['errmsg'];
            return false;
         }
         return $json;
      }
      return false;
    }



    //调用

    public function searchAction(){
       $row = array();
       $row['districtid']         = '440305';
       $row['keyword']        ='吉野家';
       //if(!$row['districtid'] || !$row['keyword']){ return $this->fail('参数丢失'); }
       //在腾讯地图中搜索门店
       $res = weixin::getCurWechat()->searchMapPoi($row);
       return $res;
    }


    2019-01-15
    有用
    回复 5
    • RedHood
      RedHood
      2019-01-21

      先去腾讯地图生成这个地点?

      2019-01-21
      回复
    • A~就是你
      A~就是你
      2019-01-22回复RedHood

      你好已经生成了,审核过了,在腾讯地图可以搜到这个地方。

      2019-01-22
      回复
    • A~就是你
      A~就是你
      2019-01-22回复A~就是你

      你好还会有其他方面的原因导致接口返回数据为空吗,

      2019-01-22
      回复
    • RedHood
      RedHood
      2019-01-22回复A~就是你

      之前问了后端,反馈是这边只是调用腾讯地图的接口,如果没报错就是正常执行了,腾讯地图那边的问题这边没法查。

      2019-01-22
      回复
    • A~就是你
      A~就是你
      2019-01-22回复RedHood

      你好那有没有地图那边的技术支持。这个问题好几天了,客户天天催,麻烦能联系下吗。

      2019-01-22
      回复
登录 后发表内容