0

我是 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"));
      }

但是托管下拉菜单或复选框的虚拟输入没有提供选定值的方法。这可能是我使用虚拟输入来承载元素的概念错误,但是当使用值输入时,你总是在右边有那些已经过时的乳头,因为这些值是由复选框或下拉菜单提供的。

4

1 回答 1

3

您应该能够跳过中间人并使用element.getFieldValue. 例如,要从名为“hidden”的复选框字段中获取值,您可以使用element.getFieldValue("hidden").

PS您也可以跳过element.getInputTargetBlock中间人并使用Blockly.JavaScript.valueToCode(IE,要在“feature_name”输入中获取块的值,您可以使用Blockly.JavaScript.valueToCode(element, "featureName", Blockly.JavaScript.ORDER_ATOMIC)或拥有什么)。如果您使用与 JavaScript 不同的生成器,请替换JavaScript为您使用的生成器(例如 Python 或其他)。

于 2018-09-18T12:46:21.700 回答