我正在按照本教程学习基本的p5.js草图:
https://p5js.org/examples/dom-input-and-button.html
问题是,函数createInput()会引发“尚未实现”错误,这是库中我单击错误消息时所指向的代码:
p5.prototype.createInput = function () {
// TODO
throw 'not yet implemented';
};
我很困惑,这似乎是制作文本框的一件简单的事情,我在这里错过了什么?
引发错误的完整代码:
var input;
function setup() {
noCanvas();
input = createInput();
}