请稍等 ...
×

采纳答案成功!

向帮助你的同学说点啥吧!感谢那些助人为乐的人

老师你好,第3.7节,加入asyncBootstrap后,server端无法调试通过,报错如下,谢谢!

老师你好,第3.7节,加入asyncBootstrap后,server端无法调试通过,3.7节14分钟之前的课程调试都没有问题,本次报错如下,谢谢!

(node:40547) UnhandledPromiseRejectionWarning: TypeError: asyncBootstrap is not a function

    at getTemplate.then.template (/Applications/XAMPP/xamppfiles/htdocs/stydyreact22/server/util/dev-static.js:49:7)

    at <anonymous>

    at process._tickCallback (internal/process/next_tick.js:188:7)

(node:40547) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)

(node:40547) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.




dev-static的代码如下:


module.exports = function (app) {
   app.use('/public',proxy({
       target: 'http://0.0.0.0:5577'
   }))
app.get('*',function (req,res) {
   getTemplate().then(template => {
     const routerContext = {}
     const app = serverBundle(createStoreMap(), routerContext, req.url)

     asyncBootstrap(app).then(() => {
       if(routerContext.url) {
         res.status(302).setHeader('Location',routerContext.url)
         res.end()
         return
       }
       const content = ReactDomServer.renderToString(app)
       res.send(template.replace('<!-- app -->',content))
     })
   })
})
}


正在回答 回答被采纳积分+3

1回答

Jokcy 2018-08-19 20:40:55

asyncBootstrap方法你引入来么?

0 回复 有任何疑惑可以回复我~
  • 提问者 慕UI259798 #1
    引入了,但我发现要去除引入是的后缀.default才能正确调试成功,不知道是不是react-async-bootstrapper版本问题。
    回复 有任何疑惑可以回复我~ 2018-08-20 06:45:36
  • Jokcy 回复 提问者 慕UI259798 #2
    哦,他们可能使用es module进行打包,所以commonjs模块体系需要加default
    回复 有任何疑惑可以回复我~ 2018-08-20 17:38:45
问题已解决,确定采纳
还有疑问,暂不采纳
意见反馈 帮助中心 APP下载
官方微信