小程序中用rich-text来实现ul功能 (代码)
程序员文章站
2022-04-05 19:19:36
...
本篇文章给大家带来的内容是关于小程序中用rich-text来实现ul功能 (代码),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助。
<rich-text nodes="{{nodes}}" class='nodes'></rich-text>
nodes: [{ name: "ul", attrs: { style: "", class: "nodes_ul" }, children: [ { name: "li", attrs: { style: "", class: "nodes_li" }, children: [{ type: "text", text: '礼品卡请在有效期内登录官网进行绑定使用' }], }, { name: "li", attrs: { style: "", class: "nodes_li" }, children: [{ type: "text", text: '流量包为当月有效,请及时使用' }], }] }],
相关推荐:
以上就是小程序中用rich-text来实现ul功能 (代码)的详细内容,更多请关注其它相关文章!
上一篇: php的chr和ord函数实现字符加减乘除运算实现代码
下一篇: 微信开发实战之模块化的实例详解