通行证变量形成
问题描述:
@app.route('/product/<unique_form>', methods=['GET', 'POST'])
def product(unique_form):
form = ProductForm(**product_data)
class ProductForm(Form):
#form
def __init__(self, *args, **kwargs):
#Here in the __init__ I need to access the unique_form value
Form.__init__(self, *args, **kwargs)
我知道,我可以使用会话这一点,但有可能是从视图中窗体类传递变量的一种方式。通行证变量形成
事情是这样的:
form = ProductForm(unique_form, **product_data)
这是可能的吗?
答
像这样:
@app.route('/product/<unique_form>', methods=['GET', 'POST'])
def product(unique_form):
form = ProductForm(unique_form, **product_data)
class ProductForm(Form):
def __init__(self, unique_form, *args, **kwargs):
# well, now you have unique_form here
Form.__init__(self, *args, **kwargs)
谢谢,完美的作品。我会接受。 – user2990084 2015-02-23 22:46:25