blockly > FieldTextInput > (constructor)
FieldTextInput.(constructor)
建構 FieldTextInput
類別的新例項
Signature:
constructor(value?: string | typeof Field.SKIP_SETUP, validator?: FieldTextInputValidator | null, config?: FieldTextInputConfig);
參數
參數 | 類型 | 說明 |
---|---|---|
值 | 字串 | Field.SKIP_SETUP 類型 | (選用) 欄位的初始值。應轉換為字串。如果為空值或未定義,則預設為空字串。如果您想略過設定程序,也可以接受 Field.SKIP_SETUP (僅供想要在自有建構函式執行後處理設定及設定欄位值的子類別使用)。 |
驗證工具 | FieldTextInputValidator | null | (選用) 系統會呼叫這個函式,驗證欄位值的變更。會接收字串並傳回經過驗證的字串,或傳回空值來中止變更。 |
config | FieldTextInputConfig | (選用) 用來設定欄位的選項對應。如需這個參數支援的屬性清單,請參閱 [欄位建立說明文件]https://developers.google.com/blockly/guides/create-custom-blocks/fields/built-in-fields/text-input#creation。 |