HTML a标签链接 设置点击下载文件 react 路由 静态路由 动态路由 虚拟路由
点击下载http://myapp-host/DLFile/UploadFile/ip.PNG
https://www.tabnine.com/code/javascript/classes/react-router/StaticRouter
server { listen 80 default_server; listen [::]:80 default_server; root /var/www/myapp/; location / { try_files $uri $uri/ /index.html; client_max_body_size 8M; client_body_buffer_size 8M; } location /gateway { proxy_pass http://127.0.0.1:9001/gateway; client_max_body_size 8M; client_body_buffer_size 8M; } location /DLFile { root /var/www/html/; client_max_body_size 8M; client_body_buffer_size 8M; }
{ path: "*", auth: true, title: "myapp", component: lazy(() => import("@/page/commonPage/notFound")), showSider: false, },
搜索
复制