angular
Vransy.
这个作者很懒,什么都没留下…
展开
-
[Angular-报错] Package “codelyzer“ has an incompatible peer dependency to
升级angular 报错版本 9.1.13 升级到11.0.5根据官网的方法进行更新其中报了两个错Package "codelyzer" has an incompatible peer dependency to "@angular/compiler" (requires ">=2.3.1 <10.0.0 || >9.0.0-beta <10.0.0 || >9.1.0-beta <10.0.0 || >9.2.0-beta <10.0.0" (e原创 2020-12-29 19:35:27 · 928 阅读 · 0 评论 -
[Angular TypeScript报错]Cannot assign to read only property ‘outwardcolor‘ of object ‘[object Object]‘
事情发生过程用动态路由从一个组件传一个对象到另一个组件接收时发生的错误源码:对象 selectedexport interface selected { model?: string; outwardcolor?: string; outwardwheel?: string; interior?: string; features?: string; pay?: string;}接收方的ts文件(只有重点部分) public chosen: selected =原创 2020-12-08 14:23:33 · 877 阅读 · 0 评论 -
[Angular,Typescript报错]选择可读属性
这个错误是这么发生的:我在TypeScript中 定义了一个对象:export interface selected { model: string; outward: string; interior: string; features: string; pay: string;}在使用的时候export class ModelComponent implements OnInit { public chosen: selected;// ......中间部分省略原创 2020-12-06 15:07:34 · 180 阅读 · 0 评论 -
[angular + ngzorro报错]the icon appstore-o does not exist or is not registered.
原因是在build项目的时候找不到路径导致的解决方案在angular.js 中加入 { "glob": "**/*", "input": "./node_modules/@ant-design/icons-angular/src/inline-svg/", "output": "/assets/" }...原创 2020-12-04 10:51:25 · 919 阅读 · 0 评论 -
NG Zorro angular 中 导航栏一刷新就回到默认选中
原代码 <li nz-menu-item nzSelected > <a [routerLink]="['/header/details']"><i nz-icon nzType="search" nzTheme="outline"></i>查询借阅</a> </li>官网上说了 要根据路由去判断已选中的导航 则 需要添加nzMatchRouter即可更改代码 <li nz-menu-it原创 2020-07-21 14:09:53 · 768 阅读 · 0 评论 -
NG-ZORRO Angular ui Nz-table Property ‘xxxxxxx‘ does not exist on type ‘NzTableComponent<any>
代码copy自官网 nz-table分页部分,分页研究了好久 踩了个坑<tr *ngFor="let data of rowSelectionTable.data">一开始我以为 前面的data和后面的data都是自己的数组 或者是定义的变量 然而并不是 在前后都改成自己的变量后 就会报Property ‘xxxxxxx’ does not exist on type ‘NzTableComponent’.前面部分data 是你定义返回的list ,而后面的 data 是 rowS原创 2020-07-21 00:38:18 · 1205 阅读 · 0 评论 -
angular报错 No value accessor for form control with unspecified name attributeNo value accessor for
这个错误 主要的原因是在于 双向绑定 [(ngModel)] 不能绑定再非常规区域例如 绑定在 <td [(ngModel)] = “”> 后面就不写了 这种情况下就会报 这种错误正常情况下 在<input [(ngModel)]=""> 才不会报错...原创 2020-06-24 23:59:48 · 5442 阅读 · 0 评论 -
Angular使用ngx-Bootstrap 找不到模块
使用官方教程安装ngx- Bootstrapt的时候总是提示找不到模块 如图https://github.com/valor-software/ngx-bootstrap/blob/development/docs/getting-started/ng-cli.mdngx-bootstrapt是一个很大的目录实际上 我们在使用的时候必须要指定到你使用模块的目录中修改成如图所示即可根据此次经验 我们可以浏览ngx-bootstrapt根目录避免出错...原创 2020-05-25 00:07:28 · 527 阅读 · 0 评论