HTML5에서 WTForms 내부에서 사용되는 새로운 속성 만 일부 속성을 가질 수 있습니까?WTForms ... html, 자동 초점?
예를 들어, 자리 표시 자 = "foo", 필수 및 자동 초점 속성을 사용하여 TextField를 만들고 싶다고합시다. 이것이 WTForms에서 어떻게 이루어 집니까?
HTML에서 그 결과는 다음과 같습니다 <input maxlength="256" name="q" value="" placeholder="foo" autofocus required>
주 placeholder="foo"
것을 쉽게 WTForms에서 이루어집니다. autofocus
및 required
은 아무런 가치가 없기 때문에 내가봤을 때 WTForms에서는 지원되지 않습니다.
WTForms가이를 지원할 수 있습니까?
attr = false 동작을 수정하는 패치가 2.0dev로 병합되었습니다. https://github.com/wtforms/wtforms/pull/17#issuecomment-28162938 – thpani