miniprogram-to-uniapp
miniprogram-to-uniapp copied to clipboard
小程序模板自定义data属性转义错误
问题描述?
自定义属性转换错误 多了对引号
重现步骤
微信
data-report='{"rese16":"{{totalIntegral}}"}'>
输出
:data-report="'{'rese16':''+(totalIntegral)+''}'"
期望的结果
:data-report="{
rese16: totalIntegral,
}"
或者
:data-report="{'rese16':''+(totalIntegral)+''}"