我正在尝试通过原型添加方法,但出现错误。知道出了什么问题吗?
function Graph() {
// Code
}
Graph.prototype.render = function() {
// Code
}
var test_graph = new Graph;
test_graph.render(); // Returns error that function Graph.render isn't defined.
我正在尝试通过原型添加方法,但出现错误。知道出了什么问题吗?
function Graph() {
// Code
}
Graph.prototype.render = function() {
// Code
}
var test_graph = new Graph;
test_graph.render(); // Returns error that function Graph.render isn't defined.