1

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

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

我需要你的帮助:(

4

1 回答 1

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')
于 2013-09-23T04:23:39.740 回答