【微信小程序】./plugin://routePlan/index.wxml not found解决方案

今天在写微信小程序地图路线导航的时候遇到了./plugin://routePlan/index.wxml not found的情况出现,解决方案就是:

要在app.json里面把"version"改成最新版本,查询最新版本:https://lbs.qq.com/miniProgram/plugin/pluginGuide/routePlan

plugins": {
    "routePlan": {
      "version":"1.0.12", 这里一定要改成最新的地图版本号!!!
      "provider":"wx50b5593e81dd937a"
    }
  },

你可能感兴趣的:(微信小程序)