This question already has answers here:
Values of disabled inputs will not be submitted
                                
                                    (6个答案)
                                
                        
                                3年前关闭。
            
                    
所以,
  我对烧瓶和前端编程非常陌生。

我有一个表格:像这样

<form action="{{ url_for('search') }}" method="post">
    Showing values for: <input type="text" name="name" value={{ name }} disabled><br><br>
    <select name="movie" width="300px">
        {% for movie in movie_list %}
        <option value="{{ movie }}" SELECTED>{{ movie }}</option>
        {% endfor %}
    </select>
    <input type="submit" value="Recommend!!">
</form>


这就是我在烧瓶中捕获的方式

@app.route('/web/search', methods=['post','get'])
def search():
    print request.method, request.form


因此,您可以看到html格式。我有两个字段。

已设置默认值的名称(文本框)

和option_list

而且,我的意图是,当用户按下“提交”时,这两个字段都是
在后端收到

但是打印语句显示。

POST ImmutableMultiDict([('movie', u'foobar')])


但是我看不到姓名字段吗?

我该如何解决?

最佳答案

可能是因为您缺少第一个valueinput引号。

同样禁用的输入也不会通过,values of disabled inputs will not be submited?

关于python - 在 flask 中将值从一条路径传播到另一条路径,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39652750/

10-10 07:55