我有一个表单,用于添加一个项目,其中使用与将提交表单的数据库不同的数据库填充 2 个下拉列表。我想将 AJAX 添加到下拉列表中,在第一个下拉列表中选择一个项目将使用 AJAX 自动填充第二个下拉列表中的数据。问题是我对表单使用相同的视图来填充数据并且即使我使用 is.ajax() 调用它也不起作用。
这是我的 AJAX 代码:
function get_data(){
// alert('test');
new Ajax.Request('/abc/abc/add', {
method: 'POST',
parameters: $H({'type':$('id_data').getValue()},
{'csrfmiddlewaretoken':$( "csrfmiddlewaretoken" ).getValue()}),
onSuccess: function(transport) {
var e = $('id_def')
if(transport.responseText)
e.update(transport.responseText)
}
}); // end new Ajax.Request
//alert($( "csrfmiddlewaretoken" ).getValue());
}
这是我的视图代码:
if request.is_ajax():
#if request.is_ajax()
cur = connections['data'].cursor()
#auto_type = Auto.objects.filter(type=request.POST.get('type', ''))
abctype = request.POST.get('type', '')
SQL = 'SELECT uuid FROM abc_abc where uid = %s', abctype
cur.execute(SQL)
auto_type =cur.fetchone()
cur = connections['data'].cursor()
SQL = 'SELECT uuid, name FROM abc_abc where parent_id = %s', auto_type
cur.execute(SQL)
colors = cur.fetchall()
return render_to_response('abc/add_abc.html', {
'colors' : colors,
}, context_instance=RequestContext(request))
还有什么我想念的吗?如果您希望我从代码中添加更多内容,请告诉我.....请帮助!