setData()发送到视图层无法解析渲染<image吗?
如题。 逻辑层: Page({
data : {
contents : '<image src="https://domain/path/image.png" />'
},
onLoad : function(){}
});
视图层: <view>
{{contents}}
</view>
前端结果被当成字符串输出: <view>
<image src="https://domain/path/image.png" />
</view>