我有一个带有 API 路由的 Flask 后端,这些路由由使用 create-react-app 创建的 React 单页应用程序访问。使用 create-react-app 开发服务器时,我的 Flask 后端工作正常。
我想npm run build
从我的 Flask 服务器提供构建(使用)静态 React 应用程序。构建 React 应用程序会导致以下目录结构:
- build
- static
- css
- style.[crypto].css
- style.[crypto].css.map
- js
- main.[crypto].js
- main.[crypto].js.map
- index.html
- service-worker.js
- [more meta files]
通过[crypto]
,我的意思是在构建时所产生的随机生成的字符串。
收到index.html
文件后,浏览器会发出以下请求:
- GET /static/css/main.[crypto].css
- GET /static/css/main.[crypto].css
- GET /service-worker.js
我应该如何提供这些文件?我想出了这个:
from flask import Blueprint, send_from_directory
static = Blueprint('static', __name__)
@static.route('/')
def serve_static_index():
return send_from_directory('../client/build/', 'index.html')
@static.route('/static/<path:path>') # serve whatever the client requested in the static folder
def serve_static(path):
return send_from_directory('../client/build/static/', path)
@static.route('/service-worker.js')
def serve_worker():
return send_from_directory('../client/build/', 'service-worker.js')
这样,静态资产就成功服务了。
另一方面,我可以将它与内置的 Flask 静态实用程序结合起来。但我不明白如何配置它。
我的解决方案足够健壮吗?有没有办法使用内置的 Flask 功能来服务这些资产?有没有更好的方法来使用 create-react-app?