html图像元素不显示图像

时间:2016-09-29 10:28:11

标签: html angularjs image

我正在使用Ionic 2 popover来显示图像。但是,图片未显示在modal

我有以下代码。如何让它显示图像?

import { Component } from '@angular/core';
import { NavParams } from 'ionic-angular';

@Component({
  template: `
    <ion-content padding id="image-popover">
      <ion-list>
        <ion-row>
          <ion-col>
            <center>
                <img class="item-stable" src="{{image}} height="75" width="75""/>
                <p>{{text}}</p>
            </center>
          </ion-col>
        </ion-row>
      </ion-list>
    </ion-content>
  `
})
export class ImagePopOverPage {
  private image: string = null;
  private text: string = null;

  constructor(private navParams: NavParams) {
    this.image = navParams.get('image');
    this.text = navParams.get('text');
  }
}

它显示了这个:

enter image description here

1 个答案:

答案 0 :(得分:1)

抱歉,我的错误。我有&#34;报价&#34;标记在错误的地方。