g***@126.com
g***@126.com
  • 发布:2022-04-22 12:03
  • 更新:2022-04-22 22:14
  • 阅读:324

【报Bug】3.4.6.20220420版本的快捷键:alt+左键单击转到定义/打开链接无效

分类:HBuilderX

产品分类: HbuilderX

PC开发环境操作系统: Windows

PC开发环境操作系统版本号: windows10

HBuilderX版本号: 3.4.6

操作步骤:

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)

2022-04-22 12:03 负责人:无 分享
已邀请:
DCloud_HB_WDL

DCloud_HB_WDL

请详细说明,提供下可复现的测试文件。

g***@126.com

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

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>  
未知街

未知街

+1,同样有这个问题

该问题目前已经被锁定, 无法添加新回复