首页 > Web开发 > 详细

jQuery与django传参

时间:2016-05-16 23:18:56      阅读:439      评论:0      收藏:0      [点我收藏+]

Get方式传参

Django中的代码如下:

  • urls.py代码:
from django.conf.urls import url
from django.contrib import admin
import AjaxTest.views

urlpatterns = [
    url(r‘^admin/‘, admin.site.urls),
    url(r"^index/$",AjaxTest.views.index),
]
  • views.py代码:

 

from django.http import HttpResponse

def index(req):
    print req.GET.get(‘url‘)
    if req.GET.get(‘url‘)==‘test‘:
        return HttpResponse("hello,this is a test")
    else:
        return HttpResponse("hahahaha")

jQuery中的代码如下:

  • 方式1:
$("input").click(function() {
	$.get("/index/?url=test", function (response, status, xhr) {
		$(".box").html(response);
	});
});
  • 方式2:
$("input").click(function() {
    $.get("/index/", "url=test", function (response, status, xhr) {
        $(".box").html(response);
    });
});
  • 方式3:

 

$("input").click(function() {
	$.get("/index/",{
		url:"test"
	},function(response,status,xhr){
		$(".box").html(response);
	});
});

 

  

 

jQuery与django传参

原文:http://www.cnblogs.com/Yellow0-0River/p/5499885.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!