Vue TypeError _vm不是函数

时间:2018-09-10 22:16:41

标签: javascript google-maps vue.js vuejs2 vue-component

在名为Home.vue的Vue组件中,包括this Google Maps plugin,如下所示

<GmapMap
 :center="{lat: 45.919849, lng: 25.0203875}"
 :zoom="7"
   map-type-id="terrain"
  style="width: 100%; height: 600px"
   >
<GmapMarker
:key="markerIdx"
v-for="(m, markerIdx) in results"
:position="getMarkerPosition(m.locationCoordinates)"
:clickable="true"
:draggable="false"
/>
</GmapMap>

对象results来自父标记,而m.locationCoordinatesString:position中的GmapMarker需要一个JSON对象。我正在定义一个getMarkerPosition函数来将该字符串转换为JSON,

export default {
      methods: {
   getMarkerPosition: function (coordinateString) {
          let split = coordinateString.split(',')
           return {
            lat: parseFloat(split[0]),
            lng: parseFloat(split[1])
            }
     }
  }
  }

但是我最后看到一个浏览器错误,提示

TypeError: _vm.getMarkerPosition is not a function
 at eval (eval at ./node_modules/vue-loader/lib/template-compiler/index.js?            
 {"id":"data-v-8dc7cce2","hasScoped":false,"transformToRequire":{"video": 
  ["src","poster"],"source":"src","img":"src","image":"xlink:href"},"buble": 
 {"transforms":{}}}!./node_modules/vue-loader/lib/selector.js? 
 type=template&index=0!./src/components/Home.vue 
 (0.96557ac29cc33c9d2325.hot-update.js:22), <anonymous>:180:63)
  at Proxy.renderList (vue.esm.js?efeb:3705)
  at Proxy.render (eval at ./node_modules/vue-loader/lib/template- 
  compiler/index.js?{"id":"data-v- 
  8dc7cce2","hasScoped":false,"transformToRequire":{"video": 

 ["src","poster"],"source":"src","img":"src","image":"xlink:href"},"buble": 
 {"transforms":{}}}!./node_modules/vue-loader/lib/selector.js? 
  type=template&index=0!./src/components/Home.vue 
 (0.96557ac29cc33c9d2325.hot-update.js:22), <anonymous>:173:47)
   at VueComponent.Vue._render (vue.esm.js?efeb:4544)
   at VueComponent.updateComponent (vue.esm.js?efeb:2788)
   at Watcher.get (vue.esm.js?efeb:3142)
   at Watcher.run (vue.esm.js?efeb:3219)
   at flushSchedulerQueue (vue.esm.js?efeb:2981)
   at Array.eval (vue.esm.js?efeb:1837)
   at flushCallbacks (vue.esm.js?efeb:1758)```

整个代码在Home.vue中。我只在Vue.use(VueGoogleMaps)

中声明main.js

1 个答案:

答案 0 :(得分:1)

如果有人遇到类似问题,我想分享我的解决方案。

主要问题是我的GmapMap的父级是另一个名为ais-results(来自Vue InstantSearch)的组件,具有inline-template属性。这意味着ais-results标记内的任何内容都无法看到“外部”。

我的优雅解决方案是将GmapMap提取到单独的组件/文件中,在其中可以定义所有必需的方法。使用新组件时,我只是将数据作为props传递给它。

另一种解决方案是避免使用inline-template属性。

相关问题和资源:

  1. Vue: method is not a function within inline-template component tag
  2. Vue inline template not finding methods or data
  3. https://medium.com/js-dojo/7-ways-to-define-a-component-template-in-vuejs-c04e0c72900d
  4. https://community.algolia.com/vue-instantsearch/components/results.html

请记住,我是反应性和Vue知识的初学者。干杯