TemplateRef<any>
とに依存するディレクティブを書いていViewContainerRef
ます。しかし、私のディレクティブはこれらの依存関係を注入できません。以下はすべて私のコードです:
main.ts
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { AppModule } from './app.module';
platformBrowserDynamic().bootstrapModule(AppModule);
app.module.ts
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { HelloWorld } from './HelloWorld.directive';
@NgModule({
imports: [BrowserModule],
declarations: [AppComponent, HelloWorld],
bootstrap: [AppComponent]
})
export class AppModule { }
app.component.ts
import { Component } from '@angular/core';
@Component({
selector: 'my-app',
template: `
Hello world!
<template [lcngHw]="true"><div></div></template>
`
})
export class AppComponent {
}
HelloWorld.directive.ts
import { Directive } from '@angular/core';
import { Input } from '@angular/core';
import { TemplateRef, ViewContainerRef } from '@angular/core';
@Directive({
selector: '[lcngHw]'
})
export class HelloWorld{
constructor(private tf: TemplateRef<any>, private vc: ViewContainerRef){
}
@Input()
set lcngHw(value: boolean) {
if (value) {
this.vc.createEmbeddedView(this.tf);
}
else {
this.vc.clear();
}
}
}
そして、これが私のトランスパイルされた HelloWorld.directive.js です:
"use strict";
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var core_1 = require('@angular/core');
var core_2 = require('@angular/core');
var HelloWorld = (function () {
function HelloWorld(tf, vc) {
this.tf = tf;
this.vc = vc;
}
Object.defineProperty(HelloWorld.prototype, "lcngHw", {
set: function (value) {
if (value) {
this.vc.createEmbeddedView(this.tf);
}
else {
this.vc.clear();
}
},
enumerable: true,
configurable: true
});
__decorate([
core_2.Input()
], HelloWorld.prototype, "lcngHw", null);
HelloWorld = __decorate([
core_1.Directive({
selector: '[lcngHw]'
})
], HelloWorld);
return HelloWorld;
}());
exports.HelloWorld = HelloWorld;
次に、アプリを実行すると、次のエラーが表示されます。
エラー: (SystemJS) HelloWorld のすべてのパラメーターを解決できません: (?, ?)。
エラー: HelloWorld のすべてのパラメーターを解決できません: (?, ?)。CompileMetadataResolver.getDependenciesMetadata ( http://localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:14268:21 ) で CompileMetadataResolver.getTypeMetadata ( http://localhost:5000/node_modules/@angular/ CompileMetadataResolver.getDirectiveMetadata ( http://localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:13944:30 )で eval ( http ://localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:14037:51 ) Array.forEach (ネイティブ) で CompileMetadataResolver.getNgModuleMetadata (http://localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:14031:51 ) RuntimeCompiler._compileComponents ( http://localhost:5000/node_modules/@angular/compiler/bundles/compiler ) .umd.js:16721:49 ) で RuntimeCompiler._compileModuleAndComponents ( http://localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:16659:39 ) で RuntimeCompiler.compileModuleAsync ( http:// localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:16650:23 ) PlatformRef_._bootstrapModuleWithZone ( http://localhost:5000/node_modules/@angular/core/bundles/core.umd.js ) :6707:29 ) http://localhost:5000/ViewContainerRefApp/main.js の評価 CompileMetadataResolver.getDependenciesMetadata ( http://localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:14268:21 ) で CompileMetadataResolver でhttp://localhost:5000/ViewContainerRefApp/main.jsをロード中に エラーが発生しました。 getTypeMetadata ( http://localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:14169:28 ) CompileMetadataResolver.getDirectiveMetadata ( http://localhost:5000/node_modules/@angular/compiler/bundles ) /compiler.umd.js:13944:30 ) で eval ( http://localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:14037:51 ) で Array.forEach (ネイティブ) で CompileMetadataResolver で.getNgModuleMetadata (http://localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:14031:51 ) RuntimeCompiler._compileComponents ( http://localhost:5000/node_modules/@angular/compiler/bundles/compiler ) .umd.js:16721:49 ) で RuntimeCompiler._compileModuleAndComponents ( http://localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:16659:39 ) で RuntimeCompiler.compileModuleAsync ( http:// localhost:5000/node_modules/@angular/compiler/bundles/compiler.umd.js:16650:23 ) PlatformRef_._bootstrapModuleWithZone ( http://localhost:5000/node_modules/@angular/core/bundles/core.umd.js ) :6707:29 ) http://localhost:5000/ViewContainerRefApp/main.js の評価http://localhost:5000/ViewContainerRefApp/main.js の ロード中にエラーが発生しました
このライブ サンプルからコードをコピーしたところ、同じエラーが発生しました。
とは登録されていないTemplateRef<any>
ようViewContainerRef
です。metadata
しかし、私はその理由を見つけることができません。誰でも私を助けることができますか?ありがとうございました。