📅  最后修改于: 2023-12-03 15:34:58.536000             🧑  作者: Mango
该函数用于在表单描述字段有错误时显示错误消息。
该函数首先获取postForm
表单中的 description
字段。如果该字段是被操作过的并且没有通过验证,函数将会返回相应的错误消息。如果该字段是必填项,函数将返回 "Description is required" 错误消息。
## Function: `showDescriptionErrors()`
Displays error message when there is an error in the form description field.
### Returns:
- `string`: error message in markdown format.
### Example:
```ts
showDescriptionErrors(): string {
const descriptionForm = this.postForm.get('description');
if (descriptionForm?.touched && !descriptionForm.valid) {
if (descriptionForm.errors.required) {
return '**Description is required**';
}
}
return '';
}