mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
docs(Calendar): improve FQA (#13062)
This commit is contained in:
parent
2bc831a1c8
commit
cb4d268834
@ -431,3 +431,35 @@ The component provides the following CSS variables, which can be used to customi
|
||||
| --van-calendar-day-disabled-color | _var(--van-text-color-3)_ | - |
|
||||
| --van-calendar-confirm-button-height | _36px_ | - |
|
||||
| --van-calendar-confirm-button-margin | _7px 0_ | - |
|
||||
|
||||
## FAQ
|
||||
|
||||
### How to use asynchronously returned data in the 'formatter'?
|
||||
|
||||
If you need to use asynchronously returned data in a 'formatter', you can dynamically create a 'formatter' function using computed properties, as shown in the following example:
|
||||
|
||||
```js
|
||||
const asyncData = ref();
|
||||
|
||||
const formatter = computed(() => {
|
||||
if (!asyncData.value) {
|
||||
return (day) => day;
|
||||
}
|
||||
return (day) => {
|
||||
day.bottomInfo = asyncData.value;
|
||||
return day;
|
||||
};
|
||||
});
|
||||
|
||||
setTimeout(() => {
|
||||
asyncData.value = 'text';
|
||||
}, 3000);
|
||||
```
|
||||
|
||||
### Failed to initialize components on iOS system?
|
||||
|
||||
If you encounter an issue where components cannot be rendered on iOS, please confirm that you did not use the `new Date ('2020-01-01')` notation when creating the Date object. iOS does not support date formats separated by a dash. The correct notation is `new Date ('2020/01/01')`.
|
||||
|
||||
Detailed explanation of this issue: [stackoverflow](https://stackoverflow.com/questions/13363673/javascript-date-is-invalid-on-ios).
|
||||
|
||||
Alternatively, you should adopt a more compatible writing style across different systems and browsers: `new Date (2020, 0, 1)`, but it should be noted that the month starts from 0.
|
||||
|
@ -467,3 +467,5 @@ setTimeout(() => {
|
||||
如果你遇到了在 iOS 上无法渲染组件的问题,请确认在创建 Date 对象时没有使用`new Date('2020-01-01')`这样的写法,iOS 不支持以中划线分隔的日期格式,正确写法是`new Date('2020/01/01')`。
|
||||
|
||||
对此问题的详细解释:[stackoverflow](https://stackoverflow.com/questions/13363673/javascript-date-is-invalid-on-ios)。
|
||||
|
||||
或者,你应该采用一种在各个系统和浏览器上兼容性更好的写法:`new Date(2020, 0, 1)`,但是需要注意的是,月份是从 0 开始的。
|
||||
|
Loading…
x
Reference in New Issue
Block a user