如上
御焱
- 发布:2023-04-28 09:14
- 更新:2023-04-28 10:22
- 阅读:246
产品分类: uniCloud/App
操作步骤:
预期结果:
如上
如上
实际结果:
如上
如上
bug描述:
"study_time": {
"description": "学习日期",
"label": "学习日期",
"bsonType": "timestamp",
"defaultValue": {
"$env": "now"
},
"componentForEdit": {
"name": "uni-datetime-picker",
"props": {
"type": "date"
}
},
"componentForShow":{
"name": "uni-dateformat",
"props": {
"format": "yyyy/MM/dd"
}
}
},
我配置componentForShow使用uni-dateformat渲染,但是生成的代码是:
<uni-dateformat format="yyyy/MM/dd" :value="item.study_time"></uni-dateformat>
很显然uni-dateformat接收时间的字段名是:date才对,但是这里生成的是:value
御焱 (作者)
自动生成的
uni-dateformat
,显示出来,带有时分秒,我因为不想带有时分秒,所以才手动指定的2023-04-28 10:42
DCloud_uni-ad_HDX
回复 御焱: 去掉组件名称,保留 props
2023-04-28 11:06
御焱 (作者)
回复 DCloud_uni-ad_HDX: ```javascript
"componentForShow":{
"props": {
"format": "yyyy/MM/dd"
}
}
2023-04-28 13:51