ruby – 将局部变量传递给控制器​​的视图

前端之家收集整理的这篇文章主要介绍了ruby – 将局部变量传递给控制器​​的视图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我无法出于某种原因将局部变量传递给show视图……

在我的控制器中我简单地说:

def show
  render template: "books/show",:resource => "Some text"
end

在我看来,我打印以下内容

<h1>My local variable text: <%= resource %></h1>

我收到以下消息:

undefined local variable or method `resource' for #<#<Class:0x00000118ebce90>:0x00000118ec3498>

我在控制器中尝试了以下语法:

render template: "books/show",locals: { resource: "Some text" }
render template: "books/show",locals: { resource => "Some text" }
render template: "books/show",:locals => { resource: "Some text" }
render template: "books/show",:locals => { resource => "Some text" }

没有运气……

有什么线索吗?

谢谢!

解决方法

我认为它应该是这样的

渲染’books / show’,:locals => {:resource => ‘有些文字’}

这个对我有用

原文链接:https://www.f2er.com/ruby/269462.html

猜你在找的Ruby相关文章