我在一个类中编写了这个函数:
this.loadCanvas = function(json) {
// parse the data into the canvas
stage.loadFromJSON(json);
// re-render the canvas
stage.renderAll();
}
其中舞台是新的织物对象。
但在浏览器中显示此错误:
Uncaught TypeError: Cannot call method 'loadFromJSON' of undefined
请告诉我该如何解决这个问题?