2

我正在为 Blockly 制作一个自定义块,需要验证输入。在这种情况onchange下,如果用户输入的输入值无效,我想警告他们。

这是我的块:

在此处输入图像描述

Blockly.Blocks['motor'] = {
    init: function() {
        this.setHelpUrl('http://www.example.com/');
        this.setColour(65);
        this.appendDummyInput()
            .appendField("motor( ");
        this.appendValueInput("port_number")
            .setCheck("Number");
        this.appendDummyInput()
            .appendField(");");
        this.setInputsInline(true);
        this.setPreviousStatement(true);
        this.setNextStatement(true);
        this.setTooltip('');
    },
    onchange: function(ev) {
        if (this.getFieldValue('port_number') > '3') {
            this.setWarningText('Port must be 0 - 3.');
        } else {
            this.setWarningText(null);
        }
    }
};

Blockly 开发者页面上,它有一个获取输入值的基本示例。undefined但是,每次onchange发生火灾时,我都会收到退货。

如何处理这些输入的验证?我不想为输入创建下拉列表,因为我需要能够从变量、int 块等输入。

4

2 回答 2

2

不确定这是否是处理此问题的最佳方法,但它对我有用。我只是使用该valueToCode方法访问输入值。然后我可以验证输入值。

注意:onchange处理程序的上下文是块,因此 this作为第一个参数传递Blockly.C.valueToCode将从正确的块中获取值。

Blockly.Blocks['motor'] = {
    init: function() {
        this.setHelpUrl('http://www.example.com/');
        this.setColour(65);
        this.appendDummyInput()
            .appendField("motor( ");
        this.appendValueInput("port_number")
            .setCheck("Number");
        this.appendDummyInput()
            .appendField(");");
        this.setInputsInline(true);
        this.setPreviousStatement(true);
        this.setNextStatement(true);
        this.setTooltip('');
    },
    onchange: function(ev) {
        var port_number = Blockly.C.valueToCode(this, 'port_number', Blockly.C.ORDER_ATOMIC);
        var valid = VALIDATE.motor_port_number(port_number);
        if (!valid) 
            alert("WARNING: The value for the motor port must be 0, 1, 2 or 3.");
        }
    }
};
于 2015-05-15T15:38:25.687 回答
0

尝试这个:

this.getInputTargetBlock('port_number').toString()

或者:

this.getInputTargetBlock('port_number').getFieldValue(/*field_name*/)

例子:

   Blockly.Blocks['stop_actions'] = {
    init: function() {
        var actions_descriptors = [
            ['HOLD', 'hold'],
            ['COAST', 'coast']
        ];
        this.appendDummyInput()
            .appendField(new Blockly.FieldDropdown(actions_descriptors), 'action')
            .setAlign(Blockly.ALIGN_RIGHT);
        this.setOutput(true, 'String');
        this.setColour(60);
        this.setTooltip('Select the stop action');
    }
};

Blockly.Blocks['motor'] = {
    init: function() {
        this.appendValueInput('arg_stop_action')
            .appendField('Stop action')
            .setAlign(Blockly.ALIGN_RIGHT);
    },

    onchange: function(e) {
        this.getInputTargetBlock('arg_stop_action').getFieldValue('action')
    }
};
于 2018-02-21T14:05:58.833 回答