有人知道我在哪里可以找到所有可用的Ionic 2启动模板吗?目前我知道离子提供教程(在v1中似乎是sidemenu的替代品),选项卡,默认为空白。
我可以在ionic start [xx] tempName中使用任何自定义模板吗?
更新:目前(2/27/2017),离子团队添加了教程模板回来,他们还添加了一个新的模板,称为超级(登录,注册)。
发布于 2016-04-18 22:08:58
发布于 2016-07-14 12:04:56
ionic start --list给予:
blank ................ A blank starter project for Ionic
complex-list ......... A complex list starter template
maps ................. An Ionic starter project using Google Maps and a side menu
salesforce ........... A starter project for Ionic and Salesforce
sidemenu ............. A starting project for Ionic using a side menu with navigation in the content area
tabs ................. A starting project for Ionic using a simple tabbed interface更新:当前Ionic 3.7.0提供了更多模板:
ubuntu@x.x.x.x:~/prj$ ionic start --list
tabs ............... ionic-angular A starting project with a simple tabbed interface
blank .............. ionic-angular A blank starter project
sidemenu ........... ionic-angular A starting project with a side menu with navigation in the content area
super .............. ionic-angular A starting project complete with pre-built pages, providers and best practices for Ionic development.
conference ......... ionic-angular A project that demonstrates a realworld application
tutorial ........... ionic-angular A tutorial based project that goes along with the Ionic documentation
aws ................ ionic-angular AWS Mobile Hub Starter
tabs ............... ionic1 A starting project for Ionic using a simple tabbed interface
blank .............. ionic1 A blank starter project for Ionic
sidemenu ........... ionic1 A starting project for Ionic using a side menu with navigation in the content area
maps ............... ionic1 An Ionic starter project using Google Maps and a side menuIonic 4模板
ionic start --list
name | project type | description
--------------------------------------------------------------------------------------------------------------------------------
blank | angular | A blank starter project
sidemenu | angular | A starting project with a side menu with navigation in the content area
tabs | angular | A starting project with a simple tabbed interface
tabs | ionic-angular | A starting project with a simple tabbed interface
blank | ionic-angular | A blank starter project
sidemenu | ionic-angular | A starting project with a side menu with navigation in the content area
super | ionic-angular | A starting project complete with pre-built pages, providers and best practices for Ionic development.
tutorial | ionic-angular | A tutorial based project that goes along with the Ionic documentation
aws | ionic-angular | AWS Mobile Hub Starter
tabs | ionic1 | A starting project for Ionic using a simple tabbed interface
blank | ionic1 | A blank starter project for Ionic
sidemenu | ionic1 | A starting project for Ionic using a side menu with navigation in the content area
maps | ionic1 | An Ionic starter project using Google Maps and a side menu发布于 2016-05-24 09:26:09
!当前,(很可能会改变)您可以执行以下操作:如果您希望在打字本中使用--ts,则是可选的。
ionic start tempName blank --v2 --ts
ionic start tempName tabs --v2 --ts
ionic start tempName base --v2 --ts
ionic start tempName sidemenu --v2 --ts更新.您不再需要指定--ts了。它现在是默认的。
ionic start tempName blank --v2更新我找到了完整的列表,请注意,有些已经有一段时间没有更新了
1.A初学者应用程序具有Ionic部署功能,可以在应用程序商店中对应用程序进行实时更新。
ionic start myApp deploy2.A starter模板,用于Ionic框架。你的基本电池-包括离子启动应用程序,加上分析。
ionic start myApp analytics3.Starter pack用于在Salesforce平台之上构建Ionic应用程序,该平台是Ionic和Salesforce之间的合作伙伴关系。
ionic start myApp salesforce使用Google和一个附带菜单的4.An Ionic初学者项目
ionic start myApp maps 使用带有内容区域导航的侧菜单启动5.A Ionic项目
ionic start myApp sidemenu6.A空白启动器项目
ionic start myApp blank --v27.Use Ionic,Three.js和WebGL将构建一个Google应用程序,作为角卡板黑客马拉松的一部分。
ionic start myApp cardboard8.A使用简单的选项卡接口启动Ionic项目
ionic start myTabs tabs --v29.This教程提供了关于Ionic v2文档的示例。
ionic start myTutorial tutorial --v210.An离子启动器项目,包含ionic.io服务。
ionic start myApp iohttps://stackoverflow.com/questions/36655379
复制相似问题