Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
248 views
in Technique[技术] by (71.8m points)

python - Wtforms Flask Filefield custom design

I am working to change the text of the upload button from 'Choose File' to 'Select File'

Successfully, completed by

Html -

<input class="btn" type="button" value="Select File" onclick="document.getElementById('aa').click();" />
{{ form.aa(class="form-control form-control-lg", style="display:none" ) }}
 <br><span id="fileprint"></span>

<script type="text/javascript">
    document.getElementById('aa').onchange = function () {
    f = this.value.replace(/.*[/\]/, '');
    $('#fileprint').text(f);
    };
</script>

forms.py

class ad(FlaskForm):
    afile = FileField('Upload ALS', validators=[DataRequired(), 
        FileAllowed(['xlsx', 'xls'], "wrong format!")])
    submit = SubmitField('Submit')

It works good, like this image -

enter image description here

When, I upload different types of file, it goes to the old design, like this,

enter image description here

How to solve this?, thanks

question from:https://stackoverflow.com/questions/65916943/wtforms-flask-filefield-custom-design

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...