I'm having problems setting a member variable on an ng2 component. In the component below, I'm trying to set some service results to a member variable. updateSearchResults1() sets the member variable as expected but updateSearchResults2 delegates the promise to processSearchResults which returns the error: "TypeError: Cannot set property 'blogPostListItems' of null." My understanding was that these 2 implementations were functionally the same. So why can I set this.blogPostListItems from updateSearchResults1() whereas I get an error that this.blogPostListItems is null from updateSearchResults2()?
import { Component, OnInit, ViewChild, ElementRef } from '@angular/core';
import { Router } from '@angular/router';
import { BlogService } from '../../services/blog.service';
import { BlogLanding } from '../../entities/blog-landing';
import { Response } from '@angular/http';
@Component({
    selector: 'blog-landing',
    templateUrl: '../../../ng2/templates/blog-landing.component.html'
})
export class BlogLandingComponent implements OnInit
{
    @ViewChild('ddlAuthor') ddlAuthor;
    blogLanding: BlogLanding;
    blogPostListItems: Array<Object>;
    constructor(
        private router: Router,
        private blogService: BlogService){}
    ngOnInit(): void
    {
    }
    updateSearchResults1()
    {
        this.blogService
            .getBlogPosts()
            .then(blogPostListItems => this.blogPostListItems = blogPostListItems)
    }
    updateSearchResults2()
    {
        this.blogService
            .getBlogPosts()
            .then(this.processSearchResults);
    }
    processSearchResults(responseObject)
    {
        this.blogPostListItems = responseObject;
    }
}
