I want to evaluate the date-input variable and pass that in as my url_for parameter but I cannot seem to be able to evaluate the date-input variable. I think I am having an issue since there are so many nested " and ' so when I run this code the date info that is passed in is the string "#date-input" instead of the value of that id.
<label>
Choose date:
<input type="date" id="date-input">
<button type="button" onclick="window.location.href='{{ url_for('image_page', date='#date-input')}}';">Submit</button>
</label>
I am quite new to flask and haven't worked a lot in HTML so any help would be greatly appreciated!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…