幽梦林子 发表于 2017-8-11 11:05:45

Angularjs4.0使用的页面引入服务,使用服务

Angularjs4.0使用的页面引入服务,使用服务,请看以下代码:




import { StorageService } from '../../services/storage.service';

constructor(private storage: StorageService) {
         
}


使用

addData(){

      // alert(this.username);

      this.list.push(this.username);

      this.storage.set('todolist',this.list);
}
removerData(key){
   
      console.log(key);
      this.list.splice(key,1);
      this.storage.set('todolist',this.list);

}






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





页: [1]
查看完整版本: Angularjs4.0使用的页面引入服务,使用服务