基本 Sproutcore:类方法、类变量帮助
这就是我如何定义一个带有实例变量和实例方法的简单类。
ExampleClass = SC.Object.extend({
foo:undefined,
bar: function() {
this.foo = "Hello world";
console.log( this.foo );
}
}
// test
var testInstance = ExampleClass.create();
testInstance.bar(); // outputs 'Hello world'
谁能帮助我提供类变量(或类似行为)和类方法的类似示例?
谢谢
This is how i am defining a simple class with instance variables and instance methods.
ExampleClass = SC.Object.extend({
foo:undefined,
bar: function() {
this.foo = "Hello world";
console.log( this.foo );
}
}
// test
var testInstance = ExampleClass.create();
testInstance.bar(); // outputs 'Hello world'
Could anyone help me out with a similar example of class variable (or similar behavoir), and class method?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
类方法/属性的做法如下:
然后您可以像这样访问它:
但不要忘记,在访问实例上的属性(或计算属性)时,您需要使用
.get()如:
A class Method/Property would be done like:
Then you can access it like:
But don't forget that when accessing a property (or computed property) on an instance, that you need to use
.get()
like: