Код: Выделить всё
fetch("/query?q=" + encodeURIComponent("c'est un château? Yes & no!"));
Код: Выделить всё
from bottle import Bottle, request
app = Bottle("")
@app.route("/query")
def query():
q = request.query.get("q") # how to decode it?
print(q)
app.run()
Подробнее здесь: https://stackoverflow.com/questions/790 ... ottle-serv