gpt4 book ai didi

ruby-on-rails - 如何从 Rails 控制台渲染部分内容?

转载 作者:数据小太阳 更新时间:2023-10-29 06:32:35 27 4
gpt4 key购买 nike

我正在使用 Rails 4.0.3。如何从 Rails 控制台渲染部分内容?

最佳答案

试试这个(在控制台中):

# initial setup
view_paths = Rails::Application::Configuration.new(Rails.root).paths["app/views"]
av_helper = ActionView::Base.new view_paths

# (Optional) include this if your partial uses route helpers:
include Rails.application.routes.url_helpers

av_helper.render "path/to/your/partial"

此外,对于模板:

av_helper.render :template => "path/to/your/template"

更新:OP 报告部分渲染线不起作用,并产生了一个错误。我没有遇到过,但如果其他人遇到过,这是 OP 指示成功的版本:

av_helper.render :partial => 'tags/tag', :collection => Tag.limit(3)

正如 Josh Diehl 指出的那样,您还可以在渲染中使用常用选项,例如 locals。我希望您应该能够使用 Controller 和 View 中通常使用的所有常用渲染选项。

乔什的例子:

av_helper.render(partial: "tags/tag", locals: {term: term})

关于ruby-on-rails - 如何从 Rails 控制台渲染部分内容?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22078627/

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