我需要在使用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
文件中的内容应返回浏览器。