gpt4 book ai didi

ruby-on-rails - Rails 3 - 在 Controller 中截断?

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

在我的 Controller 中,我正在为书籍构建一个 json 对象。我要显示truncate(book.content, 250) .

这在 Rails Controller 中不起作用。鉴于它是 JSON 渲染,我不使用 View 。那么如何截断一个呢?我不希望我的 JSON 对象很大:)!

谢谢。

最佳答案

您可以使用多种方法来完成此操作。最方便的方法是在 Controller 中包含适当的助手。在这将是:

class BooksController < ApplicationController
include ActionView::Helpers::TextHelper
...
end

或者,您也可以创建一个生成您需要的代码的部分,例如 _truncate.html.erb 和正确的代码:
<%= truncate (@book, :length => 250) %>

然后在你的 View 中渲染它:
result = render_to_string :partial => 'truncate'

希望这可以帮助。

关于ruby-on-rails - Rails 3 - 在 Controller 中截断?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4030405/

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