[Angular 2] Inject Service

TypeScript is used heavily as we build up our application, but TypeScript isn’t required. If you want to Inject a Service without using TypeScript, you’ll need to understand the @Inject decorator.

import {Component, View, Inject} from "angular2/angular2";
import {TodoService} from "./todoService";

@Component({
    selector: ‘todo-input‘
})

// Define a ref by using xxx-YYY
// Reference a ref by using xxxYyy
@View({
    template: `
        <input type="text" #log-me />
        <button (click)="onClick($event, logMe.value)">Log Input</button>
    `
})
export class TodoInput{
    todoService;
    constructor(
      //  public todoService:TodoService  //pulbic make todoService global available for the class
        @Inject(TodoService) todoService;
    ){
        console.log(todoService);
    }

    onClick(event , value){
        this.todoService.addTodo(value);
        console.log(this.todoService.todos);
    }
}
时间: 2024-12-14 02:06:54

[Angular 2] Inject Service的相关文章

[Angular 2] 5. Inject Service with &quot;Providers&quot;

In this lesson, we’re going to take a look at how add a class to the providers property of a component creates an actual providers. We’ll learn what a provider specifically does and how we can provide different dependencies with the same token. impor

Angular 学习笔记——service &amp;constant

<!DOCTYPE HTML> <html ng-app="myApp"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>无标题文档</title> <script src="angular.min.js"></scrip

[Angular 2] Use Service use Typescript

When creating a service, need to inject the sercive into the bootstrap(): import {bootstrap, Component, View} from "angular2/angular2"; import {TodoInput} from "./todoInput"; import {TodoService} from "./todoService"; @Compon

Guice 学习(六)使用Provider注入服务( Provider Inject Service)

1.定义接口 package com.guice.providerInject; import com.google.inject.ProvidedBy; public interface Service { public void execute(); } 2.定义实现类 package com.guice.providerInject; public class OneService implements Service { @Override public void execute() {

angular之service、factory预provider区别

昨晚项目组做了angular分享,刚好有讨论到这个问题.虽然许久不做前端开发,但是兴趣所致.就查阅了下资料,以便后续需要使用 自己的理解:service是new出来的,factory是直接使用就能获得到service对象,service多了一个this.provider可以初始化注入之前进行一些全局配置,还有就是需要通过$get方法来获得 比较简单的一个理解 app.factory('a', fn); app.service('b', fn); app.provider('c', fn); Th

angular中的路由,watch,service和ajax

一.$watch. 先说说angular的watch它可以监视数据模型的变化,$scope.$watch('name',function(new,old){});watch 有两个参数,第一个是监视的名字,第二个是当被监视者发生变化时,就执行的一个函数.这个函数里面也有两个参数,第一个是新值,第二个是上一个的值.注意这个上一个的值是相对于新值而言的.当被监视者是一个方法时,它将返回方法的返回值. 二.创建服务service 先说说服务的作用,它相当于抽取公共的方法.再来说说如何创建服务.先要明白

[Angular 2] 9. Value Providers &amp; @Inject

Dependecies aren’t always objects created by classes or factory functions. Sometimes, all we really want is inject a simple value, which can be a primitive, or maybe just a configuration object. For these cases, we can use value providers and in this

Angular Service入门

1.Angular内置service Angular为了方便开发者开发,本身提供了非常多的内置服务.可以通过https://docs.angularjs.org/api/ng/service查看AngularJS提供的内置服务.在企业级开发中,常用的服务有以下这些: $cacheFactory 缓存服务 $compile 编译服务 $filter 通过 $filter 服务可以格式化输出数据,也可以对数据进行过滤操作 $http AngularJS内置的核心的服务,主要和后台请求相关 $loca

angular 服务 service factory provider constant value

angular服务 服务是对公共代码的抽象,由于依赖注入的要求,服务都是单例的,这样我们才能到处注入它们,而不用去管理它们的生命周期. angular的服务有以下几种类型: 常量(Constant): 用于声明不会被修改的值. 变量(Value): 用于声明会被修改的值. 服务(Service): 这个名称跟服务这个大概念同名,就种行为就像是给自己孩子取名为"孩子".只需要创建这个服务,然后等angular把它new出来,保存这个服务,然后就可以到处注入了. 工厂(Factory):