Click here to Skip to main content
15,893,588 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more: , +
Hello.
I want to make a simple python web-script via bottle web-framework that will use jQuery UI like here: jQuery UI autocomplete with remote datasource .

This is the server-side code (attempt 1):
@get('/search.php')
def autocomplete():
	#search by request.GET['term'], then:
	return ['aaa', 'bbb']

I saw response code 200 and nothing happened.

This is the server-side code (attempt 2 - JSON):
@get('/search.php')
def autocomplete():
	#search by request.GET['term'], then:
	return [
	{'id':'001', 'label':'green birg', 'value':'green bird'},
	{'id':'002', 'label':'blue birg',  'value':'blue bird'}
		]

I saw response code 500 - it didn't work too.

So what should I respond to jquery autocomplete request?
Posted

1 solution

AAaaarggh stupid bottle :( It didn't make json... Hand-made json works fine.
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900