我是 Blockly 的新手,找不到获取下拉列表或复选框的字段值的方法。
让我们考虑以下场景(使用 blockly-dev-tools 生成):
Blockly.Blocks['feature'] = {
init: function () {
this.appendDummyInput()
.appendField("Feature") // just for label
.appendField(new Blockly.FieldDropdown([["manufacturer", "feature_manufacturer"], ["profile", "feature_profile"], ["glas", "feature_glas"]]), "category"); // for dropdown values
this.appendValueInput("feature_name")
.setCheck("String")
.setAlign(Blockly.ALIGN_RIGHT)
.appendField("Name");
this.appendValueInput("feature_prio")
.setCheck("Number")
.setAlign(Blockly.ALIGN_RIGHT)
.appendField("Priorität");
this.appendDummyInput()
.setAlign(Blockly.ALIGN_RIGHT)
.appendField("Versteckt")
.appendField(new Blockly.FieldCheckbox("TRUE"), "hidden");
现在从值输入中获取值不是问题,您可以像这样获得 thouse:
const featureName = element.getInputTargetBlock("feature_name");
if (featureName) {
console.log(featureName.getFieldValue("TEXT"));
}
const featurePrio = element.getInputTargetBlock("feature_prio");
if (featurePrio) {
console.log(featurePrio.getFieldValue("NUM"));
}
但是托管下拉菜单或复选框的虚拟输入没有提供选定值的方法。这可能是我使用虚拟输入来承载元素的概念错误,但是当使用值输入时,你总是在右边有那些已经过时的乳头,因为这些值是由复选框或下拉菜单提供的。