我正在Servoy中开发快速应用程序开发工具中进行开发,并且难以通过向其原型添加方法来扩展对象。
在普通 JavaScript 中,您可以扩展对象的原型以添加方法。当您希望拥有一个类的多个实例并且不希望每个对象在内存中重新定义相同的方法时,此技术用于节省内存。
当我尝试在 Servoy JavaScript 框架中执行此操作时,Servoy 会抛出错误,这是我的代码:
// Create the object
function Person(firstname, lastname) {
this.firstname = firstname;
this.lastname = lastname;
}
Person.prototype.greet = function () {
application.output('Hello, my name is '+this.firstname);
return;
}
Person.prototype.stateFullName = function () {
application.output('My full name is: '+this.firstname+' '+this.lastname);
return;
}
此代码在 Servoy 中引发以下错误:
The property greet is undefined for the javascript type Object
如何在 Servoy 环境中使用原型扩展对象而不会引发此错误?