Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在从 blockly 中搜索一种方法,该方法将从模式弹出窗口中给出的用户输入文本带入块中。
你能帮我解决这个问题吗?谢谢
您必须以编程方式将新标签字段添加到块中,并将输入的文本作为值。
如果您有块和输入的文本引用,那么您可以使用以下功能 -
addTextIntoBlock = function(block,text) { block.inputList[0].appendField(new Blockly.FieldLabel(text)); }