小程序
小游戏
企业微信
微信支付
扫描小程序码分享
比如某个属性是这样的:
style: { type: Object, value: { test001: ..., ... test100: ..., } }
现在外部使用的时候我们只想提供某个域的值,其他保持默认值。请问是否有比较好的方法?谢谢!
1 个回答
加粗
标红
插入代码
插入链接
插入图片
上传视频
let normalStyle = { test001: "test001", test100: "test100" } style: { type: Object, value: normalStyle }, data: { normalStyle } <view>{{style.test100 || normalStyle.test100}}</view>
你好,麻烦通过点击下方“反馈信息”按钮,提供出现问题的。
关注后,可在微信内接收相应的重要提醒。
请使用微信扫描二维码关注 “微信开放社区” 公众号
let normalStyle = { test001: "test001", test100: "test100" } style: { type: Object, value: normalStyle }, data: { normalStyle } <view>{{style.test100 || normalStyle.test100}}</view>
<view>{{style.test100}}</view>
现在全部用到style的地方全部要改为:
<view>{{style.test100 || normalStyle.test100}}</view>
单这样其实还好,有些用到的地方可能本身已经有一定的复杂度,比如<view style="width: calc(100% - {{style.custom?style.width:0}});"/>
那么这么改完就比较复杂了。可能需要单独写个wxs函数处理比较好。