I follow the demo instruction (https://handsontable.com/docs/8.3.2/demo-autocomplete.html#strict-ajax) , but it’s not work. Would you please help me to fix this problem?
I use Python Flask as below code. Thanks a lot. ^^
main.py
from flask import Flask, render_template, jsonify, json, request, redirect
app = Flask(__name__)
@app.route('/')
def main():
return render_template('index.html')
if __name__ == '__main__':
app.run(debug=True)
templates/index.html
Result as below