Leon674633
Leon674633
  • 发布:2022-12-09 10:56
  • 更新:2022-12-09 13:34
  • 阅读:436

renderjs 无法使用

分类:uni-app

代码如下,编译后在微信小程序中点击“测试RenderJS”按钮完全没反应。请问,大家遇见了这个问题么?

<template>  
    <view class="uni-padding-wrap uni-common-mt">  
        <button type="primary" @click="takePhoto">拍照搜题</button>  
        <button @click="renderScript.handleClick">测试RenderJS</button>  
    </view>  
</template>  

<script>  
export default {  
    data() {  
        return {  
            tempUrl: '',  
        }  
    },  
    onLoad() {  

    },  
    onShow() {  
        this.tempUrl = ''  
    },  
    methods: {  

    }  
}  
</script>  
<script module="renderScript" lang="renderjs">  
    export default {  
        data() {  

        },  
        methods: {  
            handleClick(event, ownerInstance) {  
                console.log("点击了按钮");  
            }  
        }  
    }  
</script>
2022-12-09 10:56 负责人:无 分享
已邀请:
BoredApe

BoredApe - 有问题就会有答案。

不支持小程序

Leon674633

Leon674633 (作者) - 1

经测试,在 H5 端没问题,但是在小程序端,完全无响应。

  • 外星人都夸我

    请问楼主,你的这个点击事件,在APP上有响应么?

    2022-12-21 16:30

要回复问题请先登录注册