HTML5手機APP開發入門(2)
使用IonicFramework v2 + angular 2 完成一個簡單的聯系人列表的操作,有三個頁面:
ListPage,DetailPage,AddItemPage
知識點:
(--ts:表示使用typescript語法)
$ ionic start contact-app blank –v2 --ts
創建完成後 運行一下看看
注意:這裡又有可能出現很多error,warn,一般都是網絡的延時造成的;還是得FQ。
$ cd contact-app
$ ionic serve
注意:這裡有一個bug
This error is caused by incompatibility between TypeScript and Angular and will be resolved with the next Ionic2 release (beta.4) because the master is already updated to Angular2 beta.8.
打開ATOM->Open folder(contact-app)
以下是創建的項目結構,只要修改pages目錄下的源代碼就可以了
$ ionic g page DetailItem
OK 試運行一下
OK 今天就到這裡
下次再將如何創建一個DataService,學習如何使用@Injectable,providers 實現Service注入