使用Flask时,如何在网址中使用#?我正在使用ViewerJS(用于查看ppt,pdf等),并且其文档指出应这样使用它。
<iframe src = "/ViewerJS/#../demo/ohm2013.odp" width='400' height='300' allowfullscreen webkitallowfullscreen></iframe>
我尝试过
<iframe src = "{{ url_for('docs.static', filename='ViewerJS') }}/#..{{ url_for('docs.static', filename='documents/test_ppt.odp') }}" width='400' height='300' allowfullscreen webkitallowfullscreen></iframe>
继续获取404。单独将其作为单独的url_fors工作,但#似乎是一个问题吗?