Angular2 - 未在构造函数和ngOnInit之外定义的服务



我一定在这里做错了什么,但我不知道是什么...... 我是一个 Angular2 新手,偶然发现了我的第一个 ng2 应用程序。

我正在尝试从组件内部访问服务上的方法,但该服务仅在 constructor() 和 ngOnInit() 中定义,它在我的其他组件函数中返回为未定义。

这类似于这个问题,但我正在使用私有关键字并且仍然有问题。

这是我的服务:

import { Injectable } from "@angular/core";
import { AngularFire,FirebaseListObservable } from 'angularfire2';
import { User } from './user.model';
@Injectable()
export class UserService {
    userList$: FirebaseListObservable<any>;
    apples: String = 'Oranges';
    constructor(private af: AngularFire) {
        this.initialize();
    }
    private initialize():void {
        this.userList$ = this.af.database.list('/users');
    }
    getTest(input:String):String {
        return "Test " + input;
    }
    getUser(userId:String):any {
        //console.log('get user',userId);
        let path = '/users/'+userId;
        return this.af.database.object(path);
    }
}

和我的组件:

import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { UserService } from '../../shared/user.service';
@Component({
    moduleId: module.id,
    selector: 'user-detail',
    templateUrl: 'user-detail.component.html'
})
export class UserDetailComponent implements OnInit {
    routeParams$: any;
    one: String;
    two: String;
    three: String;
    constructor(private usrSvc:UserService,private route:ActivatedRoute) {
        console.log('constructor',usrSvc);  // defined here
        this.one = usrSvc.getTest('this is one');  // works correctly
    }
    ngOnInit() {
        console.log('ngOnInit',this.usrSvc);  // also defined here
        this.two = this.usrSvc.getTest('this is two');  // also works correctly
        this.routeParams$ = this.route.params.subscribe(this.loadUser);
    }
    loadUser(params:any) {
        console.log('loadUser',this.usrSvc);   // undefined!!
        this.three = this.usrSvc.getTest('this is three');  // BOOM
    }
    ngOnDestroy() {
        if (this.routeParams$) {
            console.log('unsub routeParams$');
            this.routeParams$.unsubscribe();
        }
    }
}

这是从你传递函数的方式

this.routeParams$ = this.route.params.subscribe(this.loadUser);

应该是

this.routeParams$ = this.route.params.subscribe(this.loadUser.bind(this));

this.routeParams$ = this.route.params.subscribe((u) => this.loadUser(u));

否则this不会指向您当前的类,而是指向可观察的某个地方(从调用它的位置)

相关内容

  • 没有找到相关文章

最新更新