script代码块中快捷键(alt+左键单击)无效
- 发布:2022-04-22 12:03
- 更新:2022-04-22 22:14
- 阅读:324
产品分类: HbuilderX
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: windows10
HBuilderX版本号: 3.4.6
操作步骤:
预期结果:
script代码块中快捷键(alt+左键单击)无效
script代码块中快捷键(alt+左键单击)无效
实际结果:
script代码块中快捷键(alt+左键单击)无效
script代码块中快捷键(alt+左键单击)无效
bug描述:
<template>
<view>
<web-view :src="url" @message="getMessage"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ""
}
},
onLoad(options) {
if (options && options.url) {
this.url = options.url;
console.info("========="+this.url );
}
this.getMessage()
},
methods: {
getMessage(event) {
console.info("========="+event);
}
}
}
</script>
<style>
</style>
快捷键:alt+左键单击转到定义/打开链接无效问题
以上代码:
web-view中的getMessage快捷键(alt+左键单击)光标会跳转至methods中的getMessage(event)
onLoad中的this.getMessage()快捷键(alt+左键单击)光标无法跳转至methods中的getMessage(event)
4 个回复
DCloud_HB_WDL
请详细说明,提供下可复现的测试文件。
g***@126.com (作者)
<template>
<view>
<web-view :src="url" @message="getMessage"></web-view>
</view>
</template>
<script>
export default {
data() {
return {
url: ""
}
},
onLoad(options) {
if (options && options.url) {
this.url = options.url;
console.info("========="+this.url );
}
this.getMessage()
},
methods: {
getMessage(event) {
console.info("========="+event);
}
}
}
</script>
<style>
</style>
以上代码:
web-view中的getMessage快捷键(alt+左键单击)光标会跳转至methods中的getMessage(event)
onLoad中的this.getMessage()快捷键(alt+左键单击)光标无法跳转至methods中的getMessage(event)
g***@126.com (作者)
未知街
+1,同样有这个问题