標籤欄位會將字串儲存為 value
,並將字串儲存為 text
。
標籤欄位的 value
和 text
一律相同。
標籤欄位
收合區塊中的標籤欄位
創作
JSON
{
"type": "example_label",
"message0": "a label %1 and another label",
"args0": [
{
"type": "input_dummy"
}
]
}
內插引數之間的任何訊息文字都會變成標籤字串。 此外,標籤可明確插入,無論是以物件或物件的形式呈現 例如文字通常不建議翻譯,因為這樣會增加翻譯內容 難以執行的程序
{
"type": "example_label",
"message0": "%1 %2 %3",
"args0": [
{
"type": "field_label",
"text": "a label"
},
{
"type": "input_dummy"
},
"and another label"
]
}
JavaScript
Blockly.Blocks['example_label'] = {
init: function() {
this.appendDummyInput()
.appendField(new Blockly.FieldLabel('a label'));
this.appendDummyInput()
.appendField('and another label');
}
};
appendField
函式接受 FieldLabel
物件 (更常見) 用來建立字串
標籤
標籤欄位可填入選填值,以及選用的 css 類別字串。 兩者都預設為空字串。
序列化
標籤欄位無法序列化。
如果您希望標籤序列化,因為標籤即將變更 查看可序列化標籤 ] 欄位。
驗證工具
標籤欄位無法編輯,因此不支援驗證工具。