在 flutter build web 上显示任何内容后,构建文件不起作用显示空白

After flutter build web shows nothing on build files not working shows blank

在 flutter 运行 -d chrome 运行 上罚款但是在 flutter build web after build I 运行 build index.html from build/web/index .html 只显示空白屏幕并且在控制台中显示一些错误,请注意这是 flutter counter 应用程序。

Consoles errors screenshot

您需要通过某些应用程序服务器 运行 它,请参见下面的示例,使用 ExpressJs.

在节点服务器上 运行 它
const express = require('express')
const app = express()
const port = 3000

// add web folder path created after flutter build
app.use(express.static('your_web_folder_path'))

app.listen(port, () => {
  console.log(`Example app listening at http://localhost:${port}`)
})