Github上看到了一个Augular4的框架Element-Angular(Documentation)貌似是饿了么的...
不管他是谁家的吧,反正各种动画效果做的都比较中意,想借鉴一下。
用VS建的Dotnet Core 2.0下面自带的Angular模板,并且已经把Augular的相关组件已经升级为4.4.7(原默认4.2.5)
按照教程,把引用加进了app.shared.module.ts里,运行报错,查了一下大概是因为微软这套模板自带Webpack和服务器端渲染,而这套模板本身需要依赖BrowserModule,所以把引用加到了app.browser.module.ts中,再运行,没报错,但是问题来
所有的样式加载出来不说,所有框架上的指令也都不执行,框架内定义的组件也都直接报错未定义...
我同样的操作,用纯npm和ng指令按照教程操作一个遍(避免core中webpack,服务器渲染,热拔插的捣乱)就可以。
PS:
之所以用4.4.7,是因为微软提供的那个aspnet-webpack(2.0.1)最高支持Angular4.x版本,用5以上就报错。
相关问题
- Angular4 - ZoneAwareError
- How hide and show in angular 4.0
- In Angular4 - How do I add lodash and do a build w
- Angular pre-bootstrap (first screen) loader's
- what are the differences between angular2 and angu
相关文章
- Angular pre-bootstrap (first screen) loader's
- what are the differences between angular2 and angu
- SyntaxError: Unexpected token 'const' for
- Angular 2 - How to set animations on a Directive?
- Angular4 What definition of Iterable should I use
- Angular Get queryParam from URL when no name is sp
- sass multiple themes in angular
- angular 4 animations - transition duration is not
你可以手动安装最新的 SPA 模板:https://docs.microsoft.com/en-us/aspnet/core/spa/index?view=aspnetcore-2.0#installation
这个模板里面用的是 Angular/Cli 创建的模板,可以很容易的跟各种 Angular 库配合使用。