gpt4 book ai didi

ruby-on-rails - 操作 View ::模板::错误(意外标记:运算符 (<))

转载 作者:行者123 更新时间:2023-12-03 00:27:28 25 4
gpt4 key购买 nike

我在 Heroku 的部署遇到问题!我刚刚使用 cedar stack 创建了一个应用程序测试,推送我的应用程序,我遇到了这个问题(日志)

←[32m2012-03-24T15:10:56+00:00 app[web.1]:←[0m ActionView::Template::Error (Unexpected token: operator (<)
←[32m2012-03-24T15:10:56+00:00 app[web.1]:←[0m (in /app/app/assets/javascripts/application.js)):
←[32m2012-03-24T15:10:56+00:00 app[web.1]:←[0m 3: <head>
←[32m2012-03-24T15:10:56+00:00 app[web.1]:←[0m 4: <title>Test</title>
←[32m2012-03-24T15:10:56+00:00 app[web.1]:←[0m 5: <%= stylesheet_link_tag "application" %>
←[32m2012-03-24T15:10:56+00:00 app[web.1]:←[0m 6: <%= javascript_include_tag "application" %>
←[32m2012-03-24T15:10:56+00:00 app[web.1]:←[0m 7: <%= csrf_meta_tags %>
←[32m2012-03-24T15:10:56+00:00 app[web.1]:←[0m 8: </head>
←[32m2012-03-24T15:10:56+00:00 app[web.1]:←[0m 9: <body>

有什么想法吗?

更新:

我的application.js文件

// This is a manifest file that'll be compiled into including all the files listed below.
// Add new JavaScript/Coffee code in separate files in this directory and they'll automatically
// be included in the compiled file accessible from http://example.com/assets/application.js
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// the compiled file.
//
//= require jquery
//= require jquery_ujs
//= require jquery-ui
//= require_tree .

最佳答案

我遇到了这个错误,花了一段时间才找出 list 中引用的哪个文件是罪魁祸首。一旦我弄清楚哪个文件导致了错误,搜索“>”就会出现几行,但我很幸运,很快就在使用 => 运算符的 map 函数中将其归零:

.map(x => x.id);

一旦我将其更改为匿名函数:

.map(function(x) { return x.id; });

错误消失了。

关于ruby-on-rails - 操作 View ::模板::错误(意外标记:运算符 (<)),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9852841/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com