编写视图函数

import subprocess

from django.http import JsonResponse
from django.shortcuts import render

# Create your views here.
from django.views.decorators.csrf import csrf_exempt
from django.views.decorators.http import require_POST


def home(request):
    return render(request, 'index.html')


@csrf_exempt
def compute(request):
    code = request.POST.get('code')
    try:
        code = 'print(' + code + ')'
        result = subprocess.check_output(['python', '-c', code], universal_newlines=True, stderr=subprocess.STDOUT,timeout=30)
    except:
        result='输入错误'

    return JsonResponse(data={'result': result})

Django配合Bootstrap如何制作计算器

测试

Django配合Bootstrap如何制作计算器

Django配合Bootstrap如何制作计算器

Django配合Bootstrap如何制作计算器

感谢你能够认真阅读完这篇文章,希望小编分享的“Django配合Bootstrap如何制作计算器”这篇文章对大家有帮助,同时也希望大家多多支持创新互联,关注创新互联行业资讯频道,更多相关知识等着你来学习!


网站标题:Django配合Bootstrap如何制作计算器
地址分享:http://wjwzjz.com/article/pgsdoi.html

其他资讯

在线咨询
服务热线
服务热线:028-86922220
TOP