带有charset = utf-8的Base64图像;没有在Ionic2中显示

时间:2016-07-22 06:44:38

标签: angular character-encoding ionic2

我将相机从Ionic1迁移到Ionic2。

事实证明,指定一个charset = utf-8;在base64 URI中将导致非显示图像。

不工作:

string imgURI:string = 'data:image/jpeg;charset=utf-8;base64,...'

工作:

string imgURI:string = 'data:image/jpeg;base64,...'

我试图将imgURI显示为

<img [src]="imgURI"/>
<img src="{{imgURI}}"/>
<ion-input [(ngModel)]="imgURI"/>

每次都面临相同的结果,即imgURI未正确显示。似乎&#39; - &#39;在charset&#39; utf-8&#39;打破了对价值的评价。

我做错了吗?有人知道如何在Ionic2中指定base64图像的字符集吗?

0 个答案:

没有答案