我想知道如何在网页的HEAD部分添加JavaScript。我正在使用Geckofx 45在我的Windows窗体应用程序中呈现页面。
这是我到目前为止所做的,但似乎没有用。
@route('/search')
def search():
"""
Query courses database for matches in tokens field.
"""
# get the query
query = request.GET.q
# define the database
dbname = 'courses'
db = connection[dbname]
# define the collection
collection = db.courses
# make the query
matches = collection.find({"tokens":query})
# send back results
results = {}
results['matches'] = matches
response.content_type = 'application/json'
return dumps(results)
知道可能缺少什么吗? 具有ID测试的表单已经在网页中,但我在DocumentCompleted事件中添加了什么。
感谢。