【发布时间】:2016-06-15 07:02:41
【问题描述】:
我正在开发适用于移动设备的 ionic 2 应用程序。但是我尝试从一个页面移动到另一个页面(即登录页面到仪表板)花费了很多时间。我已经完成了静态页面而不是动态页面。
我刚刚在 index.html 中包含了以下脚本文件,
<script src="../node_modules/crypto-js/crypto-js.js"></script>
<!-- cordova.js required for cordova apps -->
<script src="cordova.js"></script>
<!-- Polyfill needed for platforms without Promise and Collection support -->
<script src="build/js/es6-shim.min.js"></script>
<!-- Zone.js and Reflect-metadata -->
<script src="build/js/angular2-polyfills.js"></script>
<!-- the bundle built from the app's source code -->
<script src="build/js/app.bundle.js"></script>
<!-- google maps script is loaded last as to not block rendering -->
<script src="https://maps.googleapis.com/maps/api/js?key=xxxxxxxxx"></script>
谁能指导我改进页面转换?
【问题讨论】: