首頁  >  文章  >  web前端  >  ionic2中如何使用自動產生器

ionic2中如何使用自動產生器

小云云
小云云原創
2018-03-05 09:01:371231瀏覽

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:


<ion-header>
 <ion-navbar>
 <ion-title>
  login
 </ion-title>
 </ion-navbar>
</ion-header>
<ion-content padding class="login">
</ion-content>

二、建立元件: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 &#39;@angular/core&#39;; 
@Component({ 
 selector: &#39;my-component&#39;, 
 templateUrl: &#39;build/components/my-component/my-component.html&#39; 
}) 
export class MyComponent { 
 text: string = ""; 
 constructor() { 
 this.text = &#39;Hello World&#39;; 
 } 
}

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

#指令,我們的應用程式可以在任何元素上使用的修飾符屬性.


ionic g directive myDirective 
# Results: 
√ Create app/components/my-directive/my-directive.ts

my-directive.ts:


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

四、建立服務提供者: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 &#39;@angular/core&#39;; 
import {Http} from &#39;@angular/http&#39;; 
import &#39;rxjs/add/operator/map&#39;; 
@Injectable() 
export class UserService { 
 data: any = null; 
 constructor(public http: Http) { } 
 load() { if (this.data) { 
 } 
 return new Promise(resolve => { 
 this.http.get(&#39;path/to/data.json&#39;)
  .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 &#39;@angular/core&#39;; 
@Pipe({ 
 name: &#39;my-pipe&#39; 
}) 
@Injectable() 
export class MyPipe { 
 transform(value: string, args: any[]) { 
 value = value + &#39;&#39;; // make sure it&#39;s a string 
 return value.toLowerCase(); 
 } 
}

最後,我們產生的應用程式結構如下圖:

我們的專案將存放在一個更有序和更多的控制方式,這一切都可以手動實現,但用ionic generator來做,可以節省寶貴的時間來創造這些內容。

相關推薦:

有關ionic2懶加載配置介紹

Ionic2系列之使用DeepLinker實作指定頁面URL

ionic2自訂cordova外掛程式開發_javascript技巧


#

以上是ionic2中如何使用自動產生器的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn