本文介绍了如何指定 <textarea > 的行和列使用 wtforms 标记的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

构造一个 wtforms 的 TextAreaField 是这样的:

Constructing a wtforms' TextAreaField is something like this:

content = wtf.TextAreaField('Content', id="content-area", validators=[validators.Required()])

如何指定与此文本区域关联的行数和列数?

How can I specify the number of rows and columns associated with this textarea?

推荐答案

您不应该在声明小部件的地方执行此操作.你已经在模板中做到了.例如:

You are not supposed to do it in the place where you declare the widget. You have do it in the template. For eg:

{{form.content(rows='50',cols='100')}}

需要确保行和列被指定为字符串.

Need to ensure the rows and cols are specified as a string.

这篇关于如何指定 <textarea > 的行和列使用 wtforms 标记的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-26 22:32