我正在使用select2和x-editable个库。
我想在select2框中选择一些标签,然后向django发送请求。 问题是脚本不发送任何请求(控制台中没有任何内容),但不知何故认为,成功消息已收到。
views.py:
def lookup(request):
print request
c = {'request': request}
response = render_to_response('res_candidates.html', c)
return response
script:
$.ajaxSetup({
beforeSend : function(xhr, settings) {
console.log(xhr);
}
});
$('.search-jobs').editable({
url: '/lookup/',
name: 'jobs',
mode: 'popup',
select2: {
tags: ['C++dev', 'researcher', 'candidate', 'trainee'],
tokenSeparators: [",", " "]
},
success: function(data, config) {
alert(data);
},
});