所以我的问题是我希望 Deform 渲染一个像这样的输入类型编号:
<input type="number" name="end" value="" id="deformField4" class=" form-control ">
代替:
<input type="text" name="end" value="" id="deformField4" class=" form-control ">
从这样的来源:
...
end = SchemaNode(
colander.Integer(),
title=_(u"End value"),
validator=deferred_something
)
我能改变什么?