textarea 多行文本框

一般用于多行字符串。

代码演示

textarea 多行文本框 - 图1

基础样例

最简单的用法。

  1. import { Component } from '@angular/core';
  2. import { SFSchema, SFTextareaWidgetSchema } from '@delon/form';
  3. import { NzMessageService } from 'ng-zorro-antd/message';
  4. @Component({
  5. selector: 'form-textarea-simple',
  6. template: `
  7. <sf [schema]="schema" (formSubmit)="submit($event)"></sf>
  8. `,
  9. })
  10. export class FormTextareaSimpleComponent {
  11. schema: SFSchema = {
  12. properties: {
  13. remark: {
  14. type: 'string',
  15. title: '描述',
  16. ui: {
  17. widget: 'textarea',
  18. autosize: { minRows: 2, maxRows: 6 },
  19. } as SFTextareaWidgetSchema,
  20. },
  21. },
  22. };
  23. constructor(public msg: NzMessageService) {}
  24. submit(value: any) {
  25. this.msg.success(JSON.stringify(value));
  26. }
  27. }

API

schema 属性

成员说明类型默认值
[maxLength]表单最大长度number-
[readOnly]禁用状态boolean-

ui 属性

成员说明类型默认值
[size]大小,等同 nzSizestring-
[placeholder]在文字框中显示提示讯息string-
[autosize]自适应内容高度,可设置为 true|false 或对象:{ minRows: 2, maxRows: 6 }Boolean|Objecttrue