使用ng-file-upload
向https://angular-file-upload-cors-srv.appspot.com/upload
,我只回复图像名称。
现在,如果我想在html中渲染图像
<img ng-show="createRecipeForm.file.$valid" src="{{response.filename}}" class="img-rounded" height="100">
或
<img ng-show="createRecipeForm.file.$valid" ngf-thumbnail="{{imageArray[$index]}}" class="img-rounded" height="100">
如何在此处获取我的图片?我正在使用它进行演示,目前只需要从我的本地计算机上获取它。
我看到无法在src
处为计算机上的驱动器提供路径。
那么,如果我有文件名,我如何在html中渲染图像。
答案 0 :(得分:1)
如果使用Web服务器存储文件,则应该可以访问filename
中src="{{response.filename}}"
之前要使用的服务器的相对路径
检查存储它们的文件夹结构中的位置,然后您可以尝试:(例如)
src="/AppData/{{response.filename}}"