PhoneGap中文网

标题: Angularjs4.0使用的页面引入服务,使用服务 [打印本页]

作者: 幽梦林子    时间: 2017-8-11 11:05
标题: Angularjs4.0使用的页面引入服务,使用服务
Angularjs4.0使用的页面引入服务,使用服务,请看以下代码:




  1. import { StorageService } from '../../services/storage.service';
复制代码

  1. constructor(private storage: StorageService) {
  2.            
  3. }
复制代码



使用

  1. addData(){

  2.       // alert(this.username);

  3.       this.list.push(this.username);

  4.       this.storage.set('todolist',this.list);
  5.   }
  6.   removerData(key){
  7.    
  8.       console.log(key);
  9.       this.list.splice(key,1);
  10.       this.storage.set('todolist',this.list);

  11.   }


复制代码




创建注册服务:http://bbs.phonegap100.com/thread-4281-1-1.html










欢迎光临 PhoneGap中文网 (http://bbs.phonegap100.com/) Powered by Discuz! X3.2