Yet another question about flask and jquery autocomplete. I have been reading and trying the following answered questions without any success:
Flask AJAX Autocomplete
Try this
from flask import jsonify NAMES=["abc","abcd","abcde","abcdef"] @app.route('/autocomplete',methods=['GET']) def autocomplete(): search = request.args.get('term') app.logger.debug(search) return jsonify(json_list=NAMES)
In Jquery: