之前为了测试一个模块优化问题,于是用angular-cli快速搭建了个ng5的脚手架demo,在应用惰性加载功能的时候发现浏览器报错如下: ERROR Error: Uncaught (in promise): TypeError: __webpack_require__.e is not a function TypeError: __webpack_require__.e is not a function at webpackAsyncContext (eval at ./src/$$_l…
①通过ng new angular-module创建一个全新的angular应用,默认不选路由 ②通过一下命令分别创建2个模块和1个组件 ng g m hx1 ng g c hx1 ng g m hx2 ng g c hx2 ng g c hx3 创建完成目录如下 ③将app.module和app.component改造 app.module如下: import { BrowserModule } from '@angular/platform-browser'; import { NgModu…
rails console后: 2.1.4 :001 > User # => User (call 'User.connection' to establish a connection) 这是因为Active Record 建立连接是惰性的lazily. 直接用查询语法就好. gem 'faker'后就直接可以用了. 顶多写一句require 'faker'…