Call function in function event (onChange), from Select created in Leaflet and Vue.js(函数事件(onChange)中的调用函数,来自在 Leaflet 和 Vue.js 中创建的 Select)
问题描述
我正在用 Vue.js 和 Leaflet 制作一个应用程序.在这个应用程序中,我在使用 L.DomUtil 创建的传单中选择了一个
I am making a app in Vue.js and Leaflet. In this app, I have a Select in leaflet created with L.DomUtil
this.select = L.DomUtil.create('select','leaflet-countryselect',this.div);
我没有找到在这个选择"中放置v-on:change"的方法,所以,我必须在 Vue.js 的函数方法中调用一个事件函数.
I do not find the way for put 'v-on:change' in this 'Select', so, I have to call a event function, inside to a Function Method in Vue.js.
methods: {
firstFunction{
},
secondFunction() {
this.select.on('change', function(e){
this.firstFunction()
}
}
}
但它不起作用,错误是this.firstFunction() is not a function"
But it not working, the error is "this.firstFunction() is not a function"
我试着放了
.../
var _self = this
_self.firstFunction()
../
但无论如何都不起作用.
But not working, anyway.
我该怎么做?谢谢.
推荐答案
你应该使用箭头函数 ()=>{...}
来访问组件实例 this
如下:
You should use arrow function ()=>{...}
to get access to the component instance this
as follows :
secondFunction() {
this.select.on('change', (e)=>{
this.firstFunction()
}
}
这篇关于函数事件(onChange)中的调用函数,来自在 Leaflet 和 Vue.js 中创建的 Select的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:函数事件(onChange)中的调用函数,来自在 Leaflet 和 Vue.js 中创建的 Select
基础教程推荐
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 直接将值设置为滑块 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01