如何在django框架中执行python脚本?

时间:2018-02-10 03:11:36

标签: python django python-3.x fingerprint

我只想在django 2中执行python脚本.python脚本将与R305指纹扫描器通信。如果我在网页中按下一个按钮,该按钮执行python脚本并启动传感器。

需要帮助!

1 个答案:

答案 0 :(得分:0)

实现此目的的最快方法是使用模板中的表单帖子在按下按钮时触发脚本。

<强>答案:

views.py

def press_my_buttons(request):
    if request.POST:
        # Run your script here
        print("Got the POST request")
    return render(request, 'my_template.html')

my_template.html

<form method="post">
    {% csrf_token %}
    <button type="submit">Press Me!</button>
</form>
  

注意:虽然这可以完成工作,但我会考虑尝试使用AJAX。   这是link,可以提供帮助。