我有一堂课
class Dog {
Dog() {
print("Current classname is: ${this.className}");
}
}
似乎不允许this.className。有等同的东西吗?
答案 0 :(得分:9)
this.runtimeType
或者只是
runtimeType
返回当前类的名称。
答案 1 :(得分:1)
如果你想在类的开头而不是在构建方法中初始化一个变量(例如),方法很简单,如下所示:
$('a[data-legacy-reveal-id]').click(function(e){
e.preventDefault(e);
$($(this).data('legacy-reveal-id')).foundation('reveal', 'open');
});