在静态文件夹Web2py

时间:2017-04-18 12:04:39

标签: html image web2py

大家好,因为它在标题中提到找不到在我的html页面上显示我的图像

这是我的代码:

在我的控制器中(default.py

import os
def serve_file():
    filename = request.args(0)
    path = os.path.join(request.folder, 'private', 'file_subfolder',filename)
    return response.stream(path)

在我的观看中(我的文件位于/static/images

<img src="{{=URL('static', 'images', args=image.jpg)}}" />

2 个答案:

答案 0 :(得分:0)

要完成,我找到了解决问题的方法

{{=A(IMG(_src=URL('static/images', 'image.jpg'), _alt="comment"),_href=URL('default', 'index'))}}

答案 1 :(得分:0)

您也可以尝试使用:

<img src="{{=URL('static', 'images')}}/image.jpg">