从“静态文件”文件夹中选择文件

时间:2019-10-03 08:31:03

标签: python file flask

我正在使用Flask开发一个小型Web应用程序,但我面临两个问题:

1)每当我调用javascript函数时,由于某些文件/目录问题,它们均不起作用,因为它们在WAMP服务器中可用,而在flask的本地主机中则不可用。

2)在我的网络应用中,用户必须选择一个文件,如果他选择的文件不是 Static 文件夹,则它将停止工作

<div class="content1" >

     <iframe id="frame" src="" width="100%" height="300">
     </iframe>

</div>
<script type="text/javascript">

    $("#bla").click(function () { 

    $("#frame").attr("/static/report.html");
        alert("Hey");
    });

</script>

上面是调用JS函数的代码。

This is the folder from which I **have** to choose the file all the time, otherwise it doesn't worka

1 我实际上尝试了一些来自互联网的解决方案,但是它们没有起作用。请helppppp!

0 个答案:

没有答案