django の URL で、ファイル パスを送信し、ビューから同じパスにアクセスする方法について説明します。以下を試しましたが、エラーが発生しました。このコードの問題点は何ですか。
JavaScript
window.location="/tagging/send_file"+data.filename;
//which is nothing but /tagging/send_file/media/tmp/sssss.txt
urls.py =url(r'^send_file/(?P<path>.*)$', 'send_file'),
ビュー.py:
def send_file(request):
logging.debug("========================== Got file request")