我想在此开场白,说我是JavaScript的新手,更确切地说是Neil解释器的使用。
我已经做了一些定制块,它们只是创建了JavaScript,当eval()将其块类型的对象和用户输入放入数组中时。
他们使用的函数称为pushInstruction( blockName,inputs);其中输入是块用户输入的数组,blockName是块的名称。
现在我正在尝试使用JS解释器,但问题在于我如何使用这些块。
我渴望得到帮助,而我的生命却找不到任何资源来帮助我。这可能是件愚蠢的事。
自定义块码
Blockly.Blocks['select_hand_position'] = {
init: function() {
this.appendDummyInput()
.appendField("Move");
this.appendDummyInput()
.appendField(new Blockly.FieldDropdown([["left hand","Left hand"], ["right hand","Right hand"]]), "handSelect")
.appendField("to index")
.appendField(new Blockly.FieldNumber(0), "indexSelect");
this.setPreviousStatement(true, null);
this.setNextStatement(true, null);
this.setColour(290);
this.setTooltip("");
this.setHelpUrl("");
}
};
Blockly.JavaScript['select_hand_position'] = function(block) {
var dropdown_handselect = block.getFieldValue('handSelect');
var number_indexselect = block.getFieldValue('indexSelect');
var input = '["'+dropdown_handselect+'",'+number_indexselect+']';
var code = 'pushInstruction("select_hand_position",'+input+');'
return code;
};
我有一个全局数组来保存对象。
instructionStructure = new Array();
然后在此函数中使用该函数,其中块生成要使用的代码。
function pushInstruction(blockName,inputs) {
var instruction = null;
switch(blockName) {
case "place_book":
case "grab_book":
case "select_hand_position":
instruction = {
blockName: blockName,
hand: inputs[0],
index: inputs[1].toString()
};
instructionStructure.push(instruction);
break;
default:
throw 'attempted to push unknown instruction block';
}
}
步进码
下面是在按下步骤按钮的按钮上运行的代码
function stepCode() {
Blockly.JavaScript.STATEMENT_PREFIX = 'highlightBlock(%1);\n';
Blockly.JavaScript.addReservedWords('highlightBlock');
var code = Blockly.JavaScript.workspaceToCode(workspace);
var myInterpreter = new Interpreter(code, initApi);
function nextStep() {
if (myInterpreter.step()) {
window.setTimeout(nextStep, 1000);
}
}
nextStep();
alert(instructionStructure);
}
initAPI函数
这就是我一直得到一个
Uncaught : Interpreter.setProperty不是函数
在线上
Interpreter.setProperty(范围,'pushInstruction',interpreter.createNativeFunction(包装器));
function initApi(interpreter, scope) {
var wrapper = function(id) {
id = id ? id.toString() : '';
return interpreter.createPrimitive(highlightBlock(id));
};
interpreter.setProperty(scope, 'highlightBlock',
interpreter.createNativeFunction(wrapper));
wrapper = function(blockName, inputs) {
return pushInstruction(blockName,inputs);
};
Interpreter.setProperty(scope, 'pushInstruction',
interpreter.createNativeFunction(wrapper));
}
谢谢您花时间阅读这篇文章,我非常感激!
发布于 2019-02-28 11:31:00
你在这里有个错误:
Interpreter.setProperty(scope, 'pushInstruction',
interpreter.createNativeFunction(wrapper));
=>
interpreter.setProperty(scope, 'pushInstruction',
interpreter.createNativeFunction(wrapper));
这是给Uncaught TypeError
的。这是唯一的问题吗?因为我没有真正的
但问题在于我如何使用这些区块。
https://stackoverflow.com/questions/54932757
复制相似问题