0
私のpollyfillsが入っています。私はmain.bundle.jsのInternet Explorerからこのエラーを受け取ります。それは9692行ですが、コンパイルされたコードを見ると、私はそれを理解できません。ここにあります:角2/4:厳密なモードではプロパティの複数の定義が許可されていません
styles: ["\nng-select-custom >>> .caret {\n /* display: none; */\n}\nng-select-custom >>> .ui-select-match-text {\n white-space: normal;\n line-height: 21px;\n}\nng-select-custom >>> .ui-select-toggle {\n overflow: hidden;\n}\n"]
これは角度2/4の一般的な問題ですか?私は、NG2/4
アップデートでこれについての記事を見ていないよ。ここで問題のコードのためにもう少しコンテキストです:
DropdownRuleInputComponent = __decorate([
__webpack_require__.i(__WEBPACK_IMPORTED_MODULE_0__angular_core__["Component"])({
selector: 'dropdown-rule-input',
template: "\n <ng-select-custom\n [class.invalid]=\"invalidShowing\"\n [items]=\"items\"\n [active]=\"activeSelection\"\n (selected)=\"selection = $event\"\n placeholder=\"Click for options\">\n </ng-select-custom>\n ",
styles: [__webpack_require__("../../../../../../pushgraph-client/lib/search/rule-inputs/default-styles.sass")],
styles: ["\nng-select-custom >>> .caret {\n /* display: none; */\n}\nng-select-custom >>> .ui-select-match-text {\n white-space: normal;\n line-height: 21px;\n}\nng-select-custom >>> .ui-select-toggle {\n overflow: hidden;\n}\n"]
}),
__metadata("design:paramtypes", [typeof (_d = typeof __WEBPACK_IMPORTED_MODULE_3__shared_search_service__["a" /* SearchService */] !== "undefined" && __WEBPACK_IMPORTED_MODULE_3__shared_search_service__["a" /* SearchService */]) === "function" && _d || Object])
], DropdownRuleInputComponent);
私はこの構文に全く慣れていないか、Webpack/Angular-CLIからの出力を変更する方法を知っていません。 – BBaysinger
これらの2つのリンクがこれ以上説明しています。 https://stackoverflow.com/questions/32853924/angular-2-how-to-style-host-element-of-the-component https://alligator.io/angular/styles-between-components-angular/あなたはまた、私たちがそれを理解することができるように、ただ一つの線よりも多くのコードを私たちに与えます。 –
質問を更新しました。これまでのご協力ありがとうございます。 – BBaysinger