您应该只在部分中使用局部变量吗?

发布于 2024-07-22 11:55:13 字数 232 浏览 7 评论 0原文

在可以在应用程序范围内使用的局部变量中似乎建议使用局部变量,以避免跨应用程序的依赖性。

但在单个控制器中,引用您知道在使用部分的所有操作中可用的实例变量似乎是可以接受的。

但是,如果您这样做,似乎存在风险,即特定操作可能会更改为不再向其视图提供实例变量。 然后部分将停止工作。 不过,我不确定这是否真的是一个问题,因为常规视图也会遇到同样的风险。

如果在部分中引用实例变量有关系吗?

Using local variables seems advisable in a partial that could be used application-wide to avoid dependencies across the application.

But within a single controller it seems acceptable to reference instance variables that you know will be available in all of the actions that use the partial.

If you do this, there seems to be a risk, however, that a particular action may get changed to no longer provide the instance variable to its view. Then the partial would stop working. I'm not sure if this is really a problem, though, since a regular view would encounter the same risk.

Does it matter if you reference instance variables in a partial?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

万人眼中万个我 2024-07-29 11:55:13

你今天很顺利! :-)

您可以将变量作为 :locals 传递到局部中,以保持一切整洁。 例如,

render :partial => 'my_partial', :locals => { :some_variable => some_variable, :some_important_value => 'an important point!' }

这些变量可以在分部视图中使用:

<%= some_variable %>
<%= some_important_value %>

但是,在分部视图中使用实例变量并没有什么特别的错误。

You're on a roll today! :-)

You can pass variables into the partial as :locals to keep this all nice and clean. For example,

render :partial => 'my_partial', :locals => { :some_variable => some_variable, :some_important_value => 'an important point!' }

These variables are then available in the partial view:

<%= some_variable %>
<%= some_important_value %>

However, there is nothing specifically wrong with using instance variables in your partials.

是伱的 2024-07-29 11:55:13

我只建议在部分不共享的情况下使用实例变量,因为这很快就会变得令人困惑;)

i would only recommend using instance variables as long as the partial is not shared, since this can get confusing very fast ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文