繁体   English   中英

Jhipster网关项目使ng-bind-html工作

[英]Jhipster gateway project make ng-bind-html work

我正在做一个微服务网关。 我的实体之一具有一个字段(其名称为productImgHyperLink),该字段是String字段,并且具有如下所示的完整html元素,将作为其内容存储。

<img src="http://image.xyz.com/images/I/431156.789.jpg" border="0" alt="Product Image">

在生成的.html中,可以显示内容

<td>{{productInfo.productImgHyperLink}}</td>

但是,我想将其显示为图像,而不是文本字符串。

我努力了

  1. 将'ngSanitize'添加到webapp \\ app.module.js
  2. 在weapp \\ app \\ compoments] util \\下添加一个trustAshtml.js,如下所示。

     /** * */ (function() { 'use strict'; angular .module('kdiStoreApp') .filter('trustAsHtml', trustAsHtml); function trustAsHtml($sce) { return function(html) { return $sce.trustAsHtml(html); } } })(); 
  3. 然后将详细信息页面中字段的html更改为以下内容。

     <td ng-bind-html={{productInfo.productImgHyperLink | trustAsHtml}}></td> 

但是,它无法在输出上显示图像。

  1. 最终html的输出如下所示:

     <td ng-bind-html="<img src="http://image.xyz.com/images/I/431156.789.jpg" border="0" alt="Product Image">"></td> 
  2. 输出,与不使用“ | trustAsHtml”的情况相同

     <td ng-bind-html={{productInfo.productImgHyperLink}}></td> 

请任何人对如何显示图像有任何建议? 谢谢。

如果要显示图像,则应使用<img ng-src={{your-link-property}}></img> 抱歉,您没有保存完整的html标签。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM