字符串插值不起作用,不显示错误

时间:2019-06-08 15:04:38

标签: angular typescript interpolation

问题是字符串插值不起作用,但是当我使用json管道时,它会显示对象数据。确实令人沮丧,在其他组件中插值效果很好,因此我无法理解代码中的问题。

这是组件代码:

from tensorflow.python.client import device_lib
  print(device_lib.list_local_devices())

这是模板:

import { Component, OnInit } from '@angular/core';
import { Category } from 'category';
import { CategoryService } from 'src/app/category.service';
import { ActivatedRoute } from '@angular/router';

@Component({
  selector: 'app-cat-detail',
  templateUrl: './cat-detail.component.html',
  styleUrls: ['./cat-detail.component.css']
})
export class CatDetailComponent implements OnInit {
  category: Category;
  constructor(private _categoryService: CategoryService,
              private _route: ActivatedRoute) { }

  ngOnInit() {
    this.getCategory();
  }

  getCategory() {
    const id = +this._route.snapshot.paramMap.get('id');
    this._categoryService.getCategoryById(id)
        .subscribe(data => this.category = data);
  }
}

感谢您的帮助!谢谢。

0 个答案:

没有答案