1

最初の Angular2 (rc.6) プロジェクトを開始しています。コンポーネントに正常に送信された JSON オブジェクトがありますが、テンプレートでそのキー値にアクセスできません。

サービス(抜粋):

@Injectable()
export class SongService {
  constructor(private http: Http) { }

  getSong(id: number): Promise<Song> {
    let url = '/maxapirest/v1/maxmusic/song/'+id
    console.log(url)
    return this.http
      .get(url)
      .toPromise()
      .then(function(response) {
          console.log(response.json());
          return response.json();
      } )
  }

コンポーネント (抜粋):

@Component({ 
  selector: 'my-song-reading',
  templateUrl: STATIC_URL+'song-reading.component.html',
  providers: [ SongService ],
})  

export class SongReadingComponent implements OnInit {
  song: Promise<Song>;
  constructor(
    private songService: SongService,
    private route: ActivatedRoute) { }

  ngOnInit(): void {
    this.route.params.forEach((params: Params) => {
      if (params['id'] !== undefined) {
        let id = +params['id'];

        this.song = this.songService.getSong(id)
      }
    });

  }

テンプレート(抜粋):

<div *ngIf="song">
    {{ song | async | json }}<br/><br/><br/>
    {{ song.title | async}}
    {{ song.image | async }}
    {{ song.id | async}}
</div>

私が理解できない問題は、{{歌| json }} JSON オブジェクトを正しく出力します: { "id": 71, "title": "It Don't Mean A Thing" ... } そして、エラーはスローされません。ただし、他の var キーはまったくレンダリングされません。

何か案は?

4

1 に答える 1

1

.then(...)使用して、そこに値を割り当てる必要があります。

  ngOnInit(): void {
    this.route.params.forEach((params: Params) => {
      if (params['id'] !== undefined) {
        let id = +params['id'];

        this.songService.getSong(id)
        .then(json => {
          this.song = json;
        });
      }
    });
  }
于 2016-09-12T18:05:07.950 に答える