导致资产预编译在heroku部署上失败的代码片段
Posted
技术标签:
【中文标题】导致资产预编译在heroku部署上失败的代码片段【英文标题】:Code snippet causing asset precompile to fail on heroku deploy 【发布时间】:2016-06-04 17:06:48 【问题描述】:我正在尝试将 rails/react 应用程序部署到 Heroku,但我的 rake assets:precompile 由于意外令牌 (>) 而一直失败。我已将其缩小到此快速修复,以确保 react 路由器在路由更改时滚动到页面顶部(当我将其注释掉时应用程序部署良好,但当我将其放回时预编译失败)。
谁能帮我理解为什么这段代码会导致预编译失败?我认为它与箭头运算符有关,但老实说我并不真正理解它是如何工作的。与此同时,我将学习它的作用,以便我可以尝试重新创建它,但我真的很想了解为什么这对未来的参考不起作用。谢谢!
这是导致问题的代码 sn-p:
browserHistory.listen(location =>
setTimeout(() =>
if (location.action === 'POP')
return;
window.scrollTo(0, 0);
);
);
这是堆栈跟踪的顶部:
remote: -----> Preparing app for Rails asset pipeline
remote: Running: rake assets:precompile
remote: rake aborted!
remote: ExecJS::ProgramError: Unexpected token: operator (>) (line: 11668, col: 33, pos: 318450)
remote: Error
remote: at new JS_Parse_Error (/tmp/execjs20160604-553-1fg4s41js:3572:11870)
remote: at js_error (/tmp/execjs20160604-553-1fg4s41js:3572:12089)
remote: at croak (/tmp/execjs20160604-553-1fg4s41js:3572:20898)
remote: at token_error (/tmp/execjs20160604-553-1fg4s41js:3572:21035)
remote: at unexpected (/tmp/execjs20160604-553-1fg4s41js:3572:21123)
remote: at expr_atom (/tmp/execjs20160604-553-1fg4s41js:3572:29660)
remote: at maybe_unary (/tmp/execjs20160604-553-1fg4s41js:3573:143)
【问题讨论】:
【参考方案1】:这是箭头函数语法。重写 sn -p 长格式解决了这个问题。我不确定为什么它不喜欢箭头函数语法,但这让它很开心。
browserHistory.listen(function(location)
setTimeout(function()
if (location.action === 'POP')
return;
window.scrollTo(0, 0);
);
);
【讨论】:
以上是关于导致资产预编译在heroku部署上失败的代码片段的主要内容,如果未能解决你的问题,请参考以下文章
远程:!预编译资产失败。在heroku上(Rails 6和语义UI)