wxml-transformer icon indicating copy to clipboard operation
wxml-transformer copied to clipboard

将微信小程序的wxml代码转换成js object或html片段

Results 2 wxml-transformer issues
Sort by recently updated
recently updated
newest added

如 ``` var transformer = require('wxml-transformer'); let str = transformer.toHtml('{{a 2}}'); console.log(str) ```

[email protected] [email protected] 复现步骤: ``` const wt = require('wxml-transformer') wt.toHtml(`{{ 123 }}`) // 没问题 wt.toHtml(`{{ 123 }}`) // 报下面的错 ``` ```bash TypeError: Cannot convert undefined or null to object at Function.keys...