当部署在“ heroku”上时,“承诺到事件”问题(从未完成)

时间:2019-04-15 20:45:39

标签: javascript node.js heroku

我在我的REST应用程序中使用了包“ event-to-promise”(https://github.com/JsCommunity/event-to-promise),该应用程序在localhost上可以正常使用,但是在“ heroku”上部署后无法使用。 “ await eventToPromise(xxx,'end')”从未发生

heroku,nodejs

{ key: "", name: "", formatter: () => <button onClick={() => 
this.deleteRows(title)}>Delete</button>}

deleteRows = (id) => {
    let rows = this.state.rows.slice()
    rows = rows.filter(row => row.id !== id)
    this.setState({ rows })
}

使用“ localhost”运行后,我看到消息“ PrxLst start ...”和“ ProxyLists完成工作”,一切正常 但是在heroku上,我仅看到“ PrxLst start ...”,但从未看到“ ProxyLists完成工作”。因此,事件“结束”从未发生

0 个答案:

没有答案