Uncaught ReferenceError: showcustom is not defined at

Uncaught ReferenceError: showcustom is not defined at 在vue模板里调用高德地图,但是onclick里的showcustom函数,却显示“Uncaught ReferenceError: showcustom is not defined

at HTMLButtonElement.onclick”的错误,但是这个函数已经声明,请问这是什么问题


回答:

看截图的意思是不是要在地图上 打个标记,用的原生,showcustom 你是不是定义到 vue 的 methods了,作用域不同啊


回答:

写在vue项目中的 export default 中的方法,并不会声明在全局,而使用原生dom渲染上去的元素,调用方法时读取时,无法读取到export default 中的方法,请将showcustom 方法声明在export default之外

以上是 Uncaught ReferenceError: showcustom is not defined at 的全部内容, 来源链接: utcz.com/p/936266.html

回到顶部