我刚刚完成了从角度6到角度9的迁移,其中一个最重要的依赖项不能用于角度6。
我遵循ng update的步骤
ng updateng update rxjsng update @angular/cling update @angular/core问题是我现在有很多模板错误,都与相同的问题有关。
No directive found with exportAs 'ngModel'No directive found with exportAs 'ngForm'我在网上没有发现任何与v9上的这些错误有关的东西(只在v2上)。
下面是一些与错误相关的部分:
ngModel的错误<input type="text" class="form-control style-input-size" name="UserUpdatedUsername" [(ngModel)]="UserUpdated.username" #myKronozUserUpdatedUsername="ngModel" mdbActive required>ngForm的错误<form #editUserForm="ngForm" (ngSubmit)="editUserForm.valid && saveUpdateUser()" novalidate class="style-form-edit-user">FormsModule很好地导入到app.module.ts中(这是应用程序中唯一的模块)。app.module.ts:
import { FormsModule } from '@angular/forms';
@NgModule({
imports: [FormsModule]
})
export class AppModule {
}package.json:
"dependencies": {
"@agm/core": "^1.1.0",
"@angular/animations": "^9.0.5",
"@angular/common": "^9.0.5",
"@angular/core": "^9.0.5",
"@angular/forms": "^9.0.5",
"@angular/platform-browser": "^9.0.5",
"@angular/platform-browser-dynamic": "^9.0.5",
"@angular/platform-server": "^9.0.5",
"@angular/router": "^9.0.5",
"@ngx-translate/core": "^10.0.2",
"@ngx-translate/http-loader": "^3.0.1",
"angular-csv-files": "^1.0.0",
"chart.js": "2.5.x",
"classlist.js": "1.1.x",
"core-js": "2.4.x",
"crypto-js": "^3.1.9-1",
"easy-pie-chart": "2.1.x",
"font-awesome": "4.7.x",
"hammerjs": "2.0.x",
"jarallax": "^1.10.3",
"moment-timezone": "^0.5.21",
"ng-html-util": "1.0.x",
"ng-recaptcha": "^4.3.0",
"ng-uikit-pro-standard": "/!\ sensible value /!\",
"ng2-file-upload": "^1.3.0",
"ngx-facebook": "^2.4.0",
"ngx-pagination": "^3.2.1",
"node-sass": "^4.13.1",
"rxjs": "^6.5.4",
"rxjs-compat": "^6.3.3",
"screenfull": "3.3.x",
"smoothscroll-polyfill": "0.3.x",
"tslib": "^1.10.0",
"web-animations-js": "^2.3.2",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular/cli": "^9.0.5",
"@angular/compiler-cli": "^9.0.5",
"@angular/language-service": "^9.0.5",
"@angular/compiler": "^9.0.5",
"@types/jasmine": "2.5.38",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-coverage-istanbul-reporter": "^0.2.0",
"protractor": "~5.1.2",
"ts-node": "~3.2.0",
"tslint": "~5.7.0",
"typescript": "~3.7.5",
"webpack": "^4.3.0",
"@angular-devkit/build-angular": "~0.900.5"
}我是不是错过了迁移的东西?谢谢。
发布于 2020-03-05 17:50:21
你会得到错误,因为只有模板变量在角9中被删除,这是因为它们被输入为any,并且允许突变。总的来说,这是一种反模式。接下来,您的元素将被强类型化。
在<= 8版本中,下面的代码是有效的。#TranslateBtn您可以引用translate属性,因为它被键入为any。
<button
#translateBtn
(click)="translateBtn.translate = !translateBtn.translate"
>
Translate
</button>在角9中,#translateBtn将是HTMLButtonElement类型,它不具有translate属性。相反,您可以将该功能替换为调用组件上的函数的事件。
HTML:
<button (click)="ontTranslate()">
Translate
</button>TS:
export class PeopleListComponent {
translateToWookiee = false;
onTranslate(): void {
this.translateToWookiee = !this.translateToWookiee;
}
}我的答案来自这个博客文章,来自Brian,谷歌开发专家,在棱角和网络技术。
发布于 2020-03-05 17:52:41
https://stackoverflow.com/questions/60550010
复制相似问题