我有以下代码在views.py中打开一个网页:
def pdfView(request,filesPats):
f = open(filesPats,'rb')
cont = f.read()
response = HttpResponse(cont, mimetype='application/pdf')
response['Content-Disposition'] = 'inline;filename="'+my_file+'.pdf"'
f.close()
return response
我使用 django 1.4 和 python 2.7。它返回一个 PDF 视图并且工作正常。但问题是:如何禁用 pdf 查看器中的上下文菜单?