我的 jquery 看起来像这样:
$('#id_start_date_list').change(
function get_time()
{
var value = $(this).attr('value');
alert(value);
var request = $.ajax({
url: "/getTime/",
type: "GET",
data: {start_date : value},
dataType: "json",
success: function(data) {
//Popluate combo here by unpacking the json
}
});
});
我的 view.py 看起来像这样:
def getTime(request):
if request.method == "GET":
date_val = request.GET.get('start_date')
format = '%Y-%m-%d'
sd = datetime.datetime.strptime(date_val, format)
sql_qw = MeasurementTest.objects.filter(start_date = sd)
results = [{'start_time': str(date.start_time), 'id_start_time':date.start_time} for date in sql_qw]
print results
*****json_serializer = serializers.get_serializer("json")()
response_var= json_serializer.serialize(results, ensure_ascii=False, indent=2, use_natural_keys=True)*****
return HttpResponse(response_var, mimetype="application/json")
我的 html 页面如下所示:
html>
<head>
<title>date Comparison</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
{% if form.errors %}
<p style="color: red;">
Please correct the error{{ form.errors|pluralize }} below.
</p>
{% endif %}
<form action="/example/" method="post" align= "center">{% csrf_token %}
<table align = "center">
<tr>
<th><label for="start_date_list">Date 1:</label></th>
<th> {{ form.start_date_list }} </th>
</tr>
<tr>
<th><label for="start_time_list">time:</label></th>
<th><select name="start_time_list" id="start_time_list"></th>
<option></option>
</select>
<th></th>
<div id = "log"></div>
</tr>
<tr align = "center"><th><input type="submit" value="Submit"></th></tr>
</table>
</form>
</body>
</html>
如您所见,我正在从选择框中获取值,并且正在对数据库执行操作并检索值并将其存储在 json 对象中。
有两个部分我完全失明。首先是 json 对象,我不确定结果是否存储在 response_var 对象中。第二个是,我不确定如何从 json 对象获取值到“start_time_list”的新列表中
详细说明:我在 json 对象初始化中做错了什么吗?我试图打印 respose_var,但它似乎没有打印在控制台上。我使用正确的语法吗?有人能告诉我如何在 view.py 中查看存储在 json 对象中的值吗
类似地,我如何在jquery端执行操作,从json对象中提取值以及如何通过示例代码和可能的解决方案将json对象的值分配到列表框中。