最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

rspec - wrong number of arguments (given 3, expected 1..2) in Rails 7.0.x, tag.div - Stack Overflow

programmeradmin2浏览0评论

In Rails 5.x I could define options like so:

options = {class: "...", "data-unix-timestamp": "...", "data-toggle":"..."}
tag.div('', options)

Upgrading to Rails 7.0.8.7, this fails:

Failure/Error: tag.div('', options)
     
ArgumentError:
  wrong number of arguments (given 3, expected 1..2)

In Rails 5.x I could define options like so:

options = {class: "...", "data-unix-timestamp": "...", "data-toggle":"..."}
tag.div('', options)

Upgrading to Rails 7.0.8.7, this fails:

Failure/Error: tag.div('', options)
     
ArgumentError:
  wrong number of arguments (given 3, expected 1..2)
Share Improve this question asked 11 hours ago Eric WanchicEric Wanchic 2,0841 gold badge24 silver badges26 bronze badges 1
  • 1 There has to be something else wrong and the below is definitely not the solution. The tag helper accepts 4 arguments so the stacktrace is likely missing some details. Willing to bet you are using rails 7 with an older ruby version and there is some form of argument expansion going on that is not supported by your version of ruby. – engineersmnky Commented 10 hours ago
Add a comment  | 

1 Answer 1

Reset to default 0

Fix: options need to be explicitly specified.

options = {class: "...", "data-unix-timestamp": "...", "data-toggle":"..."}
"<div #{tag.attributes(options)} ></div>".html_safe

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论