最佳答案
我想在 WTForms 中的字段中添加一个占位符属性?
abc = TextField('abc', validators=[Required(), Length(min=3, max=30)], placeholder="test")
以上代码无效
如何添加带有值的占位符属性?