Warning: file_get_contents(/data/phpspider/zhask/data//catemap/0/drupal/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Angular 角度2-使用HTTP请求的插值和绑定_Angular - Fatal编程技术网

Angular 角度2-使用HTTP请求的插值和绑定

Angular 角度2-使用HTTP请求的插值和绑定,angular,Angular,我是angular2的新手,在获取数据以显示我的视图时遇到困难 import { Component, AfterViewInit, OnInit, EventEmitter, Output } from '@angular/core'; import { Router } from '@angular/router'; import { Title } from '@angular/platform-browser'; import { MdSnackBar } from '@angular/

我是angular2的新手,在获取数据以显示我的视图时遇到困难

import { Component, AfterViewInit, OnInit, EventEmitter, Output } from '@angular/core';
import { Router } from '@angular/router';
import { Title } from '@angular/platform-browser';
import { MdSnackBar } from '@angular/material';
import { TdLoadingService, TdDialogService, TdMediaService } from '@covalent/core';

//import { ProfileService } from './services/profile.service';
import { ProfileStudent } from "../core/entities/user";
import { GlobalService } from "../core/services/global.service";
import { UserDataContext } from "../core/services/data/user-data-context.service";

@Component({
  templateUrl: './profile.component.html',
  styleUrls: ['./profile.component.scss']
})
export class ProfileComponent implements OnInit {

  profile: ProfileStudent = <ProfileStudent>{};


  constructor(private titleService: Title,
    private router: Router,
    private loadingService: TdLoadingService,
    private dialogService: TdDialogService,
    private snackBarService: MdSnackBar,
    private global: GlobalService,
    private userDataContext: UserDataContext,
    public media: TdMediaService) { }

  goBack(route: string): void {
    this.router.navigate(['/']);
  }

  ngOnInit(): void {
    // broadcast to all listener observables when loading the page
    this.media.broadcast();
    this.titleService.setTitle('Profile');
    this.loadingService.register('profileIsLoaded');
    this.loadProfile();
  }

  loadProfile(): void {

    this.userDataContext.getProfile()
        .then((profile) => {
          this.profile = profile
          this.loadingService.resolve('profileIsLoaded');
        })
        .catch(e => {
          this.loadingService.resolve('profileIsLoaded');
          console.log('error getting user profile');
          console.log(e);
        });
  }


}

我想出来了

const userProfiles = userProfileResult.results as Array<ProfileStudent>
const userProfiles=userProfileResult.results作为数组
我试图用profile.bio引用单个配置文件。如果我只想要第一份个人简历,我应该使用profile[0].bio

getProfile(): Promise<ProfileStudent> {
        const self = this;
        //add flag for when the profile is loaded


        let query = EntityQuery.from(this.userApiResources.profile.resource);

        return <Promise<any>>this.manager.executeQuery(query)
            .then(res => getUserProfileResponse(res))
            .catch(this.queryFailed);

        function getUserProfileResponse(userProfileResult: QueryResult) {
            const userProfiles = userProfileResult.results as Array<ProfileStudent>

            return userProfiles;

        }

    }
[
  {
    "$type": "Ecat.Data.Models.User.ProfileStudent, Ecat.Data",
    "PersonId": 1,
    "Bio": "Hello this is a test",
    "ContactNumber": null,
    "Person": {
      "$type": "Models.User.Person, Data",
      "PersonId": 1,
      "IsActive": true,
      "LastName": "Dresden",
      "FirstName": "Harry",
      "AvatarLocation": null,
      "GoByName": "Harry",
      "MpGender": "Male",
      "Email": "harry.dresden@us.af.mil",
      "RegistrationComplete": true,
      "MpInstituteRole": "test",
      "Security": null,
      "ModifiedById": null,
      "ModifiedDate": null
    },
    "Courses": null,
    "CourseGroupMemberships": null
  }
]
const userProfiles = userProfileResult.results as Array<ProfileStudent>