博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ajax删除,
阅读量:5316 次
发布时间:2019-06-14

本文共 2128 字,大约阅读时间需要 7 分钟。

ajax删除就是在html页面的script里写

getstudent.html

    
Title
{
% for row in stulist %}
{
% endfor %}
ID 姓名 年龄 性别 班级 操作
{
{ row.id }}
{
{ row.username }}
{
{ row.age }}
{
{ row.gender }}
{
{ row.cs.title }}
删除 | ajax删除 | 修改

url

from django.conf.urls import urlfrom django.contrib import adminfrom app.views import classesfrom app.views import studentfrom app.views import ajaxurlpatterns = [    url(r'^admin/', admin.site.urls),    url(r'^classes.html$',classes.get_classes),#不加^访问点击页面没反应    url(r'^add_classes.html$',classes.add_classes),    url(r'^del_classes.html$', classes.del_classes),    url(r'^edit_classes.html$',classes.edit_classes),    url(r'^set_teacher.html$', classes.set_teacher),    url(r'^student$', student.get_student),    url(r'^add_student$', student.add_student),    url(r'^del_student$', student.del_student),    url(r'^edit_student$',student.edit_student),    url(r'^ajax1$', ajax.ajax1),    url(r'^ajax2$', ajax.ajax2),    url(r'^ajax3$', ajax.ajax3),    url(r'^ajax4$', ajax.ajax4),]

ajax.py

from django.shortcuts import render,HttpResponsefrom app import modelsdef ajax1(req):    return render(req,'ajax1.html')def ajax2(req):    user=req.GET.get('username')    pwd=req.GET.get('password')    import time    time.sleep(5)    return HttpResponse('你好')def ajax3(req):    v1=req.POST.get('a1')    v2=req.POST.get('a2')    try:        v3=int(v1)+int(v2)    except Exception as e:            v3='格式错误'    return HttpResponse(v3)def ajax4(req):    nid=req.GET.get('nid')    msg='s'    try:        models.Student.objects.filter(id=nid).delete()    except Exception as e:        msg=str(e)    return HttpResponse(msg)

 

转载于:https://www.cnblogs.com/wfl9310/p/9593467.html

你可能感兴趣的文章
数据库优化分层思想
查看>>
经典vim插件功能说明、安装方法和使用方法介绍(已更新)
查看>>
Mock2 moco框架的http协议get方法Mock的实现
查看>>
Django的第一步(第一节)
查看>>
软概(lesson 2):课堂测试
查看>>
传智168期JavaEE struts2杜宏 day32~day33(2017年2月15日23:27:09)
查看>>
18 南京 D
查看>>
面试经验总结
查看>>
solr5.5索引mysql数据(新手总结)
查看>>
MySQL知识总结(二)基本语句总结
查看>>
SSM框架整合
查看>>
AMD and CMD are dead之KMD.js依赖可视化工具发布
查看>>
第三课 Makefile文件的制作(上)
查看>>
SQL Azure Reporting CTP
查看>>
Leetcode400Nth Digit第N个数字
查看>>
JavaScript数组迭代方法(图解)
查看>>
ycsb-命令及参数-与生成的负载类型相关
查看>>
扒开系统调用的三层皮(下)
查看>>
子类访问父类和方法覆写
查看>>
在Activity不可见时暂停WebView的语音播放,可见时继续播放之前的语音
查看>>