url-for

    1熱度

    2回答

    我有這樣一個鏈接: <a class="glyphicon glyphicon-remove glyphicon-color-red btn-delete" data-toggle="modal" data-target="#myModal" user-id="56f52ea551d72027711157d6"></a> 而且使用jQuery,就點擊我把參數user-id和更改操作URL,這個

    1熱度

    1回答

    我想從用戶輸入到搜索框中的「名稱」和「大小」值中獲取值。 但顯而易見的問題是,我試圖得到值從method: "POST" hmtl形式。 而我的html操作只是引用{{ url_for('main') }} html,而不是要在{{url_for('search')}} html中檢索這些值的位置。 這裏是模板: import sqlite3 from flask import Flask,re

    0熱度

    1回答

    我的路線的方法是: @app.route('/movie/') def movie(page_num=1): #...detail skipped... 我的模板是: <li><a href="{{ url_for('movie',page_num=page_num) }}">{{ page_num }}</a></li> 當我點擊鏈接,地址欄顯示「127.0.0.1 :5000/mo

    1熱度

    1回答

    我想與url_for使用瓶。問題是,當我試圖用JavaScript變量的值啓動警報時,一切似乎都沒有問題,但是當我嘗試使用url_for啓動警報時,變量的內容未打印出來。我做錯了什麼?或者我的代碼中缺少什麼? 如何將JavaScript變量傳遞給url_for函數? 的html代碼: <a class="dissable_user_btn" data-user_id="{{user.id}}" h

    0熱度

    3回答

    如何獲取在窗體上提交的用戶輸入以顯示在固定的URL上? @app.route('/', methods=['GET','POST']) def main(): if request.method == 'POST': msg = request.form['message'] return redirect(url_for('display_msg', msg=

    0熱度

    1回答

    我停留在藍圖時,我試圖用燒瓶藍圖的add_url_rule 的方式時,這裏是我的燒瓶項目結構: myapp ... __init__.py ... app.py ... model ... static ... views ...... main.py ... templates ...... base.html ...... results.html 在main.py,這裏

    0熱度

    1回答

    我正在構建一個使用zappa部署到AWS Lambda的應用程序,我試圖使用Flask-s3來處理靜態文件。我從來沒有使用[瓶-S3] [1]之前,它似乎相當簡單,但我發現...... AttributeError: 'FlaskS3' object has no attribute 'url_for' 他們這樣,我理解你只需要更換你的靜態的URL url_for像這樣: app.config['

    0熱度

    1回答

    我正在使用url_for和Python Flask發生錯誤。錯誤如下: MissingSchema: Invalid URL 不知道是什麼問題。這裏是我的代碼: @app.route("/", methods=('GET', 'POST')) def landing(): form = forms.OptinForm() if form.validate_on_submit(

    0熱度

    1回答

    試圖做一些非常簡單的事情,但會得到奇怪的結果。 我有一個圖像作爲附件存儲,我想在VF頁面中顯示。 如果我這樣做,它工作正常 <apex:image url="{!URLFOR($Action.Attachment.Download,'00PR0000008Q3YmMAK')}"/> 然而,這是出於測試目的,我硬編碼的ID。如果我嘗試在對象中引用Id,那麼它會失敗。即使對象中包含的值與上面的值完

    0熱度

    2回答

    @app.route('/sign/<error>') def sign(error=''): return render_template('sign.html',er=error) @app.route('/process', methods=['POST','GET']) def process(): ch = request.form['box'] if