我是新的django和jquery,我是searching for a 'hello world' sample for jquery
使用django1.3,其中hello世界從服務器返回到客戶端的字符串/ json當用戶按下按鈕時或者在加載頁面時。如何從Django模板中的Jquery腳本調用python函數
注:我正在使用django1.3和python 2.7。這是一個非常基本的問題。
我成功地顯示了一個字符串「這是JQuery的Hello World」沒有任何視圖函數(只使用jquery)。但我不知道如何使用jQuery函數的視圖函數 如果有任何人有想法請在advance.om模板 幫助me.Thanks我嘗試使用下面的代碼片段。
urls.py
(r'^hellofromserver/$',views.test),
def test(request):
if request.method == 'GET':
json = simplejson.dumps('hello world!')
return HttpResponse(json, mimetype = 'application/json')
jqueyhelloserver.html:
<html>
<head>
<title>jQuery Hello World</title>
<script type="text/javascript" src="{{STATIC_URL}}js/jquery-1.2.6.min.js"></script>
</head>
<body>
.....
<script type="text/javascript">
# how can I get'hello world' from test function(What is the sytax )
</script>
<div id="msgid">
</div>
</body>
</html>
我怎麼能調用的函數 '測試',並從jQuery的 'hellofromserver'(從模板)?
我只需要知道如何jQuery的通信服務器? – Jisson