如何将“功能选项卡”添加到Google的块中

时间:2015-01-24 18:18:18

标签: javascript code-generation blockly

根据Blockly附带的Demo,我们在生成代码时只有逻辑,循环,数学和文本选项。在这里:https://blockly-demo.appspot.com/static/demos/generator/index.html

如何添加函数和变量选项卡,因为文档提供的内容似乎很浅。文档:https://developers.google.com/blockly/installation/code-generators

提前致谢!

1 个答案:

答案 0 :(得分:3)

"菜单项"或"标签"在封闭演示的左侧组成了"工具箱" 要在工具栏中添加更多项目,请选中https://developers.google.com/blockly/installation/toolbox

例如,在将函数和变量添加到工具箱的情况下,将下面的xml代码添加到index.html。

<category name="Variables" custom="VARIABLE"></category>
<category name="Functions" custom="PROCEDURE"></category>

对index.html的一点检查将告诉您编译xml代码的位置,并且您将适当地插入代码。