如何使用Python和Django将文件数据返回给浏览器?

时间:2017-07-13 10:57:14

标签: python django

我需要在使用Python运行URL到浏览器时返回文件数据。我在下面解释我的代码。

def createfile(request):
    if request.method == 'GET' and 'q' in request.GET:
        param = request.GET['param']
        if param is not None and param != '':
            execfile(param)

当用户在浏览器上运行http://127.0.0.1:8000/createfile/?param=/opt/lampp/htdocs/Nuclear_reactor/d25/nuclear_vulnerable/hello.py时,hello.py文件中的内容应返回浏览器。

0 个答案:

没有答案