rich-text不用string类型,怎么插入img标签?
如上图,箭头所指位置,发现img无法被解析。(其他的比如h1标签也无法被解析)
但使用String类型,是可以的,可是官方说性能会差点。
所以我的疑问是,数组类型怎么放img,h1这类标签呢?
3 回复
data: { nodes: [{ name: "div" , attrs: { class: "div_class" , style: "line-height:60px;color:red;" }, children: [ { name: "img" , attrs: { src: "http://img2.imgtn.bdimg.com/it/u=1682501936,3997238938&fm=28&gp=0.jpg" , width: "300rpx" } }, { name: "img" , attrs: { src: "http://img2.imgtn.bdimg.com/it/u=1682501936,3997238938&fm=28&gp=0.jpg" , width: "350rpx" } }] }] } |