如何在浏览器中打开pdf并禁用django中的上下文菜单?

时间:2013-06-07 10:49:27

标签: javascript python django

我有以下代码在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查看器中的上下文菜单?

1 个答案:

答案 0 :(得分:1)

您需要查看 this plugin

您需要做的就是根据需要进行自定义。