1
この角度コードを実装しようとすると、なぜTypeErrorが発生するのかわかりません。クラス({constructor:function(){}})の周りでエラーを生成します。理由は分かりません。おかげで助けをUncaught TypeError:オブジェクト(...)(...)。クラスは関数ではありません
import "hello_angular/polyfills";
import { Component, NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { FormsModule } from "@angular/forms";
import { platformBrowserDynamic } from "@angular/platform-browser-dynamic";
var CustomerSearchComponent = Component({
selector: "shine-customer-search",
template: '\
<header> \
<h1 class="h2">Customer Search</h1> \
</header> \
'
}).Class({
constructor: function() {
}
});
var CustomerAppModule = NgModule({
imports: [ BrowserModule, FormsModule ],
declarations: [ CustomerSearchComponent ],
bootstrap: [ CustomerSearchComponent ]
})
.Class({
constructor: function() {}
});
にご
package.json
ファイルにあなたの角度のバージョンを変更してみてください? – yurzui^5と^ 4の両方を試しました – michael2779
https://github.com/angular/angular/issues/20305 – yurzui