博客
关于我
强烈建议你试试无所不能的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

你可能感兴趣的文章
海量数据处理面试题集锦
查看>>
【设计模式】命令模式
查看>>
pyinstaller---将py文件打包成exe
查看>>
readonly和const的区别
查看>>
SSM框架搭建(四) springmvc和mybatis的配置
查看>>
UVa 11346 - Probability
查看>>
python数据类型之间的转换
查看>>
微软职位内部推荐-SDEII
查看>>
微软职位内部推荐-SENIOR SOFTWARE ENGINEER
查看>>
Redis系统性介绍
查看>>
(备忘)打开office2010总是在配置进度
查看>>
jquery中的ajax方法(备忘)
查看>>
iOS基础-高级视图-UITableView--静态单元格
查看>>
打印图片的属性和实现另存图片功能以及使用numpy
查看>>
IOS-网络(大文件下载)
查看>>
基于MySQL的高可用可扩展架构探讨
查看>>
linux系统服务设置命令--chkconfig命令参数及用法详解
查看>>
0714M
查看>>
动态加载vs静态加载
查看>>
ajax跨域请求的问题
查看>>