相关文章推荐
热心的茶壶  ·  ResNet的实现 - 简书·  1 年前    · 

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

1 人不认可

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

Need help!

1 个评论
Depends on the script.
python
django
python-3.x
fingerprint
Yogesh T S
Yogesh T S
发布于 2018-02-10
1 个回答
wrabbit
wrabbit
发布于 2018-02-10
已采纳
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>