2
ViewEncapsulation.Nativeを純粋なJSすなわちES5で書かれたAngular 2コードで使用したいと思います。しかしそれは未定義です。 es5でアクセスするには?あなたは次のことを試みることができるAngular 2 - ESEでViewEncapsulation.Nativeが定義されていません
ViewEncapsulation.Nativeを純粋なJSすなわちES5で書かれたAngular 2コードで使用したいと思います。しかしそれは未定義です。 es5でアクセスするには?あなたは次のことを試みることができるAngular 2 - ESEでViewEncapsulation.Nativeが定義されていません
:
var AppComponent = ng.core
.Component({
selector: 'my-app',
template: '<div>Test</div>',
viewEncapsulation: ng.core.ViewEncapsulation.Native
})
.Class({
constructor: function() {
(...)
}
});
'ng.core.ViewEncapsulation.Native'は、それが未定義ではないが、動作するようには思えません。 Angular 2はまだネイティブの影DOMを使用する代わりにエミュレートしています –
'viewEncapsulation'の代わりに' encapsulation'にする必要があります。 –
'ViewEncapsulation.Native'の代わりに' ViewEncapsulation.None'を使用してください。 –