首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

如何使用flask后端显示唯一的loding.gif on (onclick)?

要使用Flask后端显示唯一的loading.gif on (onclick),可以按照以下步骤进行:

  1. 创建一个Flask应用程序并引入必要的模块:
代码语言:txt
复制
from flask import Flask, render_template

app = Flask(__name__)
  1. 在项目的静态文件夹中创建一个名为static的文件夹,并将loading.gif文件放入其中。
  2. 在项目的模板文件夹中创建一个名为templates的文件夹,并在其中创建一个名为index.html的模板文件。
  3. index.html模板文件中添加以下代码:
代码语言:txt
复制
<!DOCTYPE html>
<html>
<head>
    <title>Loading GIF Example</title>
</head>
<body>
    <h1>Click the button to show the unique loading GIF</h1>
    <button onclick="showLoading()">Show Loading</button>
    <div id="loadingDiv" style="display:none;">
        <img src="{{ url_for('static', filename='loading.gif') }}" alt="Loading...">
    </div>

    <script>
        function showLoading() {
            var loadingDiv = document.getElementById('loadingDiv');
            loadingDiv.style.display = 'block';
        }
    </script>
</body>
</html>
  1. 在Flask应用程序中创建一个路由,将index.html模板文件渲染并返回给客户端:
代码语言:txt
复制
@app.route('/')
def index():
    return render_template('index.html')
  1. 启动Flask应用程序:
代码语言:txt
复制
if __name__ == '__main__':
    app.run()

现在,当用户访问Flask应用程序的根URL时,将显示一个按钮。当用户点击按钮时,将显示唯一的loading.gif。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

领券