博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ionic2中如何使用自动生成器
阅读量:4931 次
发布时间:2019-06-11

本文共 2787 字,大约阅读时间需要 9 分钟。

ionic generator是命令行的功能,ionic2自动帮我们创建应用程序,从而节省了大量的时间,并增加我们的速度来开发一个项目的关键部分。

 

ionic generator使我们可以自动创建以下几部份:
  • component
  • directive
  • page
  • provider

一、创建页面:ionic g page [PageName]

通过这个命令创建一个新的页面,ionic2项目中这个命令使​​用最多
我们只需要进入我们的命令行中,并运行下面的命令:
ionic g page login# Results: √ Create app/pages/login/login.html √ Create app/pages/login/login.scss √ Create app/pages/login/login.ts

login.ts:

import {Component} from '@angular/core'; import {NavController} from 'ionic-angular'; @Component({  templateUrl: 'build/pages/login/login.html', }) export class LoginPage {   constructor(public nav: NavController) {} }

login.html:

login

 

二、创建组件:ionic g component [ComponentName]

组件是一段代码,可以在我们的应用程序的任何部分使用
通过这个命令创建一个组件:
ionic g component myComponent# Results: √ Create app/components/my-component/my-component.html √ Create app/components/my-component/my-component.ts

my-component.ts:

import {Component} from '@angular/core'; @Component({   selector: 'my-component',   templateUrl: 'build/components/my-component/my-component.html' }) export class MyComponent {   text: string = "";   constructor() {     this.text = 'Hello World';   } }

 

三、创建指令:ionic g directive [DirectiveName]

 

 

 

 

 

 
指令,我们的应用程序可以在任何元素上使用的修饰符属性.
ionic g directive myDirective # Results: √ Create app/components/my-directive/my-directive.ts

my-directive.ts:

import {Directive} from '@angular/core'; @Directive({   selector: '[my-directive]' // Attribute selector }) export class MyDirective {   constructor() {     console.log('Hello World');   } }

四、创建服务提供者:ionic g provider [ProviderName]

现在创建一个新的服务(提供者),提供者负责处理数据的REST API的连接,本地存储,SQLite的等等。
要创建它,我们去运行以下命令我们的终端:
ionic g provider userService # Results: √ Create app/providers/user-service/user-service.ts

服务代码如下:

user-service.ts:

import {Injectable} from '@angular/core'; import {Http} from '@angular/http'; import 'rxjs/add/operator/map'; @Injectable() export class UserService {   data: any = null;     constructor(public http: Http) { }     load() { if (this.data) {   }   return new Promise(resolve => {     this.http.get('path/to/data.json')      .map(res => res.json())      .subscribe(data => {         this.data = data;         resolve(this.data);       });     });   } }

五、创建管道pipe:ionic g pipe [PipeName]

该管道的变化,我们可以对任何数据使用我们的模板,如以大写字母显示文本,显示货币值,日期格式等。
ionic g pipe myPipe # Results: √ Create app/pipes/myPipe.ts

我们的管道的代码如下

myPipe.ts:

import {Injectable, Pipe} from '@angular/core'; @Pipe({   name: 'my-pipe' }) @Injectable() export class MyPipe {   transform(value: string, args: any[]) {     value = value + ''; // make sure it's a string     return value.toLowerCase();   } }

最后,我们生成的应用程序结构如下图:

我们的项目将存放在一个更加有序和更多的控制方式,这一切都可以手动实现,但用ionic generator来做,可以节省宝贵的时间来创造这些内容。

转载于:https://www.cnblogs.com/ckAng/p/7297758.html

你可能感兴趣的文章
1699. Turning Turtles
查看>>
1048. Find Coins (25)
查看>>
(八十六)使用系统自带的分享框架Social.framework
查看>>
C# 使用IP端口网络打印图片
查看>>
OSI与TCP/IP你了解多少?
查看>>
压缩解压缩相关基础知识
查看>>
javaweb之MVC设计模式
查看>>
[APIO2015]巴厘岛的雕塑
查看>>
使用Code First模式开发如何更新数据库(转载)
查看>>
Mybatis实例增删改查(二)
查看>>
android:inputType参数类型说明
查看>>
使用泛型迭代Map集合
查看>>
Cut 'em all! CodeForces - 982C(贪心dfs)
查看>>
sqoop导出工具
查看>>
Codeforces Round #376 (Div. 2)
查看>>
Codeforces 607D Power Tree 线段树 (看题解)
查看>>
【LeetCode 33】Search in Rotated Sorted Array
查看>>
Promise超时情况
查看>>
IndexOf、IndexOfAny 、Remove
查看>>
转载-asp.net id 和name的区别
查看>>