将JavaScript添加到Geckofx 45

时间:2016-07-21 14:26:49

标签: javascript winforms geckofx

我想知道如何在网页的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事件中添加了什么。

感谢。

0 个答案:

没有答案