我上无法访问属性VAL在此组件的构造
@NgComponent(
selector: 'dartcomp',
templateUrl: 'dartComp.html',
publishAs: 'ctrl',
map: const
{
'val' : '@val'
}
)
class DartComp
{ String val;
DartComp()
{ print("construktor DartComp $val");
}
}
这是在使用的index.html
<dartcomp id="dc" val="x"></dartcomp>
是否有访问构造VAL的方法吗?