如何使用ajax从django服务器读取文本文件?

时间:2013-09-23 04:15:53

标签: ajax django

我想知道如何使用ajax从django服务器读取文本文件?或其他什么。

我搜索了使用XMLHttpRequest,当我试图获取django模板html文件时它工作。但我无法获取模板目录之外的其他文本文件。如何在veiw.py中发送请求文件的内容? 我想我不能使用render_to_response()..

我需要你的帮助:(

1 个答案:

答案 0 :(得分:0)

你的网址中有这样的内容:

url(r'^static/mymedia/'       , 'myproject.views.get_file'),

您的观点中包含以下内容:

def get_file(request):
  current_directory='/home/arpit/myproject/'
  f=open(current_directory+request.path)
  return HttpResponse(f.read(),mimetype='text/plain')