随笔分类 -  Angular

摘要:完整报错信息: MSBUILD : error MSB3428: Could not load the Visual C++ component "VCBuild.exe". To fix this, 1) install the .NET Framework 2.0 SDK, 2) install 阅读全文
posted @ 2023-04-12 20:44 Lulus 阅读(197) 评论(0) 推荐(0) 编辑
摘要:运行ng serve时报错: ERROR in The Angular Compiler requires TypeScript >=3.1.1 and <3.3.0 but 3.9.10 was found instead. 执行 npm install typescript@">=3.1.1 < 阅读全文
posted @ 2023-04-12 20:43 Lulus 阅读(72) 评论(0) 推荐(0) 编辑
摘要:MAUI 简介 MAUI 布局Layout MAUI 布局Layout StackLayout MAUI 布局Layout Grid MAUI 布局Layout AbsoluteLayout MAUI 布局Layout FlexLayout MAUI 布局Layout BindableLayout 阅读全文
posted @ 2023-02-24 13:20 Lulus 阅读(1254) 评论(0) 推荐(3) 编辑
摘要:There are two methods for Sonarqube integration with Angular. One way is to use ng test to generate the lcov.info file and then read the file directly 阅读全文
posted @ 2022-07-08 22:46 Lulus 阅读(699) 评论(0) 推荐(0) 编辑
摘要:Sonarqube与Angular集成有两种方案: 一种是使用ng test生成lcov.info文件后,通过SonarScanner CLI直接读取文件。 一种是通过在angular项目中安装sonarqube的组件,将其集成在一起。 下面会讲两种方法 方法一:使用SonarScanner CLI 阅读全文
posted @ 2022-07-01 18:25 Lulus 阅读(432) 评论(0) 推荐(0) 编辑
摘要:首先安装npm-audit-html npm i -g npm-audit-html 然后输出报告 npm audit --json | npm-audit-html 结果report.html会创建在根目录,打开后如图所示 注意事项 如果你使用的是淘宝或者华为镜像源,你将无法使用npm audit 阅读全文
posted @ 2022-06-29 22:12 Lulus 阅读(481) 评论(1) 推荐(0) 编辑
摘要:.net 创建Windows Service .net for TCP服务端 && 客户端 TypeScript Array Remove EntityFrameworkCore 一表对多表存在外键的设计 读取mdb文件 基类、子类之间的类型转换 自定义显隐式类型转换 EF Code First 快 阅读全文
posted @ 2020-02-24 11:43 Lulus 阅读(357) 评论(0) 推荐(0) 编辑
摘要:从 router link page1 跳转 router link page2 和 router link page3 通过自定义路由 设置router link page2的路由后有3个参数,parameter,parameter2,parameter3 跳转router link page2 阅读全文
posted @ 2019-04-06 21:28 Lulus 阅读(1772) 评论(0) 推荐(0) 编辑
摘要:安装 基本使用 定义一个dom 定义对象 获得echarts对象 多折线图生成 效果如图 示例代码 "示例代码" 参考资料 "Is it possible to use ECharts Baidu with Angular 2 and TypeScript" "Ionic2系列——在Ionic2中使 阅读全文
posted @ 2019-04-06 16:24 Lulus 阅读(3411) 评论(0) 推荐(0) 编辑
摘要:安装 Node.js 下载并安装 "Node.js" Angular 执行命令 参考资料: "angular quickstart" TypeScript 更新 更新Node.js 未测试以下命令行 我的做法是,去官网下载后直接覆盖安装,后面发现有问题,PC直接不识别npm了 所以在系统的程序管理中 阅读全文
posted @ 2019-04-05 16:49 Lulus 阅读(1188) 评论(0) 推荐(0) 编辑
摘要:作用 canActivate 控制是否允许进入路由。 canActivateChild 等同 canActivate,只不过针对是所有子路由。 关键代码 创建路由守卫 设置路由守卫 示例代码 "示例代码" 参考资料 "Angular路由守卫" "CanActivate" 阅读全文
posted @ 2019-04-04 12:58 Lulus 阅读(5411) 评论(0) 推荐(0) 编辑
摘要:效果 代码 "示例代码" "参考资料" 阅读全文
posted @ 2019-03-19 13:56 Lulus 阅读(1616) 评论(0) 推荐(0) 编辑
摘要:项目结构 项目模板来自于 "abp" 或者 "52abp" .net core 后端服务站点发布到IIS 发布报错 在项目目录运行命令行,执行 如果.net core版本不对,则会提示需要安装某版本的.net core 完成安装即可 "参考资料" appsettings.json 在appsetti 阅读全文
posted @ 2019-03-18 14:37 Lulus 阅读(1564) 评论(0) 推荐(0) 编辑
摘要:解法一 概括和流程 定义了两个组件,data transfer two和data transfer two child,由data transfer two引用data transfer two child,实现二者之间的数据传输 关键代码 data transfer two 示例代码 https: 阅读全文
posted @ 2018-11-29 20:02 Lulus 阅读(1349) 评论(0) 推荐(0) 编辑
摘要:前端表单验证 为年龄输入框添加了两个验证,并分情况填写了提示语 [Validators.required, this.isMoreThanZero]为age字段的验证列表 其中Validators.required是Validators提供的验证,this.isMoreThanZero是自定义验证 阅读全文
posted @ 2018-11-29 20:01 Lulus 阅读(4128) 评论(0) 推荐(0) 编辑
摘要:实现效果 form表单控件的实时更新 效果如图 关键代码 前端循环properties,填充控件即可 示例代码 "示例代码" 参考资料 "Angular2 form ControlGroup who hold an undefined number of Control" 阅读全文
posted @ 2018-08-18 17:20 Lulus 阅读(1352) 评论(0) 推荐(0) 编辑
摘要:一些符号的概念 [(ngModel)] + Output/Input 和 Form是两套内容 Output/Input示例如下: 自定义app upload sort 定义输入与输出 阅读全文
posted @ 2018-08-18 17:19 Lulus 阅读(1353) 评论(0) 推荐(0) 编辑
摘要:目的 离开页面时,做出逻辑判断 以ng alain的项目为基础做演示 效果如图: 关键代码 定义一个CanDeactivateGuardService 在component中完成leaveTip方法 设置ng alain的ReuseTabMatchMode,排除can deactivate这个目标路 阅读全文
posted @ 2018-08-18 17:19 Lulus 阅读(2986) 评论(0) 推荐(0) 编辑
摘要:执行命令 注意from=1.7.1,填写自己的原version 然后可能因为包的原因会有一些报错,根据报错内容,谷歌解决即可 参考资料 "Error: Local workspace file ('angular.json') could not be found" 阅读全文
posted @ 2018-08-18 17:18 Lulus 阅读(738) 评论(0) 推荐(0) 编辑
摘要:排除复用 参考资料 "feat(abc: reuse tab): new reuse tab component plans!" 跳转关闭tab typescript this.router.navigateByUrl( ,{ skipLocationChange:true }); skipLoca 阅读全文
posted @ 2018-08-15 18:02 Lulus 阅读(2695) 评论(0) 推荐(0) 编辑