摘要:
PyCharm 开发工具 先打开项目 1. ctrl+alt+s 2. project:项目名称 选中Project Interpreter,点右面+号 :搜索 django-pyodbc-azure 执行最下面( Install Package)按钮 3.继续 第2步 搜索并安装 sql_serv 阅读全文
摘要:
使用 jQuery 的 ajax 或者 post 之前 加入这个 js 代码:http://www.ziqiangxuetang.com/media/django/csrf.js 阅读全文
摘要:
#原来版本 $.get("{% url 'add' %}",{'a':a,'b':b}, function(ret){ $('#result').html(ret); }) #区别 ‘/add/' 改成 {% url 'add' %} 阅读全文
摘要:
# views.py def add(request): a = request.GET['a'] print(a) b = request.GET['b'] a = int(a) b = int(b) return HttpResponse(str(a+b)) # templates/*.html 阅读全文
摘要:
var List = {{ List|safe }};//safe 必须存在 阅读全文