显示来自分贝角局部视图二进制图像 [英] display binary image from db to angular partial view

查看:80
本文介绍了显示来自分贝角局部视图二进制图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我是想用来显示JSON对象从网络API请求返回来内图像。我能够在我的角度部分显示字符串,数字和日期/时间,但无法得到显示图像。
这里是其中包含我演讲的题目中的每个字段我的JSON对象(模型)类

I was trying to display image which is coming within the json object returning from an web api request. I'm able to display string, number and date/time in my angular partial but couldn't get the image displaying. here is my json object which contains each field of my topic (model) class

<Topic>
<Body>dsadfsaadsfds</Body>
<Created>2014-06-15T00:00:00</Created>
<Flagged>false</Flagged>
<Id>1022</Id>
<PhotoFile>
iVBORw0KGgoAAAANSUhEUgAAB2wAAAOiCAIAAAAzNbBAAAABiWlDQ1BJQ0MgUHJvZmlsZQAAKBWtkT1LA0EQht+L0SgJGCRoCpEFRSzu5IxFTLTJB5iIRYgKane5nImQj+NyIfoD7Gy0EG0U9S+INhaWYqGFIAjB3yAEAi..........
(I want to post screen shot but i can't due to lack of reputations.....)
</PhotoFile>
<Replies i:nil="true"/>
<Title>csdaadsf</Title>

和这里是我的角度HTML部分:

and here is my angular html partial:

    <a data-ng-href="#/message/{{ i.id }}">{{ i.title }}</a>
  </div>
  <div class="date span2">
    {{ i.created | date:"medium" }}
  </div>
  <div class="contents span12">
    {{ i.body }}
  </div>
    <img  ng-alt="" src="{{'data:image'+i.photofile}}" />    </div>


`

既然我能得到其他属性的工作,我的棱角分明的工厂和控制器应工作。是否有什么毛病我在显示图像的角局部视图语法?谢谢

Since i can get other attributes working, my angular factory and controller should be working. Are there anything wrong with my syntax in angular partial view for displaying images? Thanks

推荐答案


  • 您不应该是采用了棱角分明的前pression作为值时,使用的src 属性。使用 NG-SRC 相反,它将保证图像不显示角有机会取代前pression之前。

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆