码迷,mamicode.com
首页 > Web开发 > 详细

jQuery与django传参

时间:2016-05-16 23:20:07      阅读:347      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!