2018年1月30日

ajax 请求

摘要: 发送请求 ajax({ url:'/index/' , # 指发送到哪里 type:'POST' , #发送方式 post 或者 get data:{‘username’:name}, #发送的数据 success: function(data){ # 回调 函数 ,data是后台传回来的数据,是字 阅读全文

posted @ 2018-01-30 21:28 jiayou888888 阅读(88) 评论(0) 推荐(0) 编辑

render 和 redirect 的区别

摘要: return render(request , 'index.html') return redirect( '/index/') 都是跳转页面, render 跳转之后 链接上面还是显示的之前的链接 但是页面跳转 这个是用的render ,从 center 页面跳转到 home 页面, 页面跳转了 阅读全文

posted @ 2018-01-30 10:45 jiayou888888 阅读(522) 评论(0) 推荐(0) 编辑

导航