angular
ITLionWoo
这个作者很懒,什么都没留下…
展开
-
Angular学习第一天
Angular学习第一天学习目标 1. 如何创建angular新工程 2. 什么是单向绑定 3. 什么是双向绑定 4. 双向绑定需要注意事项 5. 如何查看错误运行错误 6. 如何创建一个简单的导出类打开命令行工具,输入ng new user-managment创建原创 2017-10-25 23:44:32 · 309 阅读 · 0 评论 -
npm install出现"Unexpected end of JSON input while parsing near"错误解决方法
运行npm cache clean --forcen即可解决pm install出现”Unexpected end of JSON input while parsing near”错误。原创 2017-11-25 16:29:21 · 34551 阅读 · 0 评论 -
npm install出现包部分包不能下载解决方法
如果出现npm install出现包部分包不能下载情况,把node-sass修改成实际包的名字就可以解决。npm install node-sass --node-sass_cdnurl=http://cdn.npm.taobao.org/dist/node-sass原创 2017-12-21 20:56:36 · 5139 阅读 · 1 评论 -
如何在ngbtabset切换tab时不销毁页面只做隐藏
在ngb-tabset中设置destroyOnHide成false就可以达到目的。<ngb-tabset [destroyOnHide]="false"原创 2017-12-01 22:32:35 · 1292 阅读 · 0 评论 -
npm设置路径大全
npm config set registry https://registry.npm.taobao.orgnpm config set disturl https://npm.taobao.org/distnpm config set electron_mirror https://npm.taobao.org/mirrors/electron/npm config set sas原创 2017-11-19 10:15:08 · 5567 阅读 · 0 评论 -
javascript如何快速判断变量是不是null或undefined或长度为零
只需要使用下面这个快速判断变量是不是null或undefined或长度为零,下面这些值都会返回falseif (value) {}nullundefinedNaNempty string ("")0false原创 2017-11-21 23:28:24 · 3472 阅读 · 0 评论 -
ng generate component Error More than one module matches. Use skip-import opti
运行ng generate component hello命令出现下面问题 Error: More than one module matches. Use skip-import option to skip importing the component into the closest module. More than one module matches.原创 2017-11-04 20:47:33 · 4726 阅读 · 1 评论 -
Angular增加国际化支持
Angular增加国际化支持原创 2017-10-26 19:09:08 · 537 阅读 · 0 评论 -
如何添加bootstrap到Angular工程
如何添加bootstrap到Angular工程原创 2017-10-26 19:08:34 · 4078 阅读 · 2 评论 -
Angular使用taobao镜像以加快下载速度
Angular使用taobao镜像以加快下载速度运行下面命令npm install -g cnpm --registry=https://registry.npm.taobao.orgng set --global packageManager=cnpm原创 2017-11-13 08:37:41 · 1885 阅读 · 0 评论 -
npm install命令运行中出现Error: ENOENT: no such file or directory解决方法
在开发过程中执行下面脚本出现错误npm install --save ng-bootstrap/ng-bootstrap出现Error: ENOENT: no such file or directory, open 'D:\aa\node_modules\ng-bootstrap\.git\hooks\commit-msg'原创 2017-10-26 13:17:43 · 71819 阅读 · 2 评论 -
Angular学习第二天
Angular学习第二天学习目标 1. 如何递归显示数组列表内容 2. 如何响应点击事件 3. 如何更改CSS 4. 如何处理未定义变量原创 2017-10-26 00:30:41 · 328 阅读 · 0 评论 -
Windows下升级node.js版本方法
以管理员权限打开命令行工具或powershell运行下面命令Set-ExecutionPolicy Unrestricted -Scope CurrentUser -Forcenpm install -g npm-windows-upgradenpm-windows-upgrade原创 2017-12-14 08:50:22 · 9549 阅读 · 0 评论