gpt4 book ai didi

mysql - 如何计算 Ruby on Rails 上的文本长度?

转载 作者:行者123 更新时间:2023-11-30 00:25:31 24 4
gpt4 key购买 nike

我想创建一个类方法来将文章描述转换为文章内容(描述 = 文章内容中的 100 个字符),我使用的是 LEN,但不起作用!

这是我的代码:

class Article < ActiveRecord::Base
belongs_to :user, :dependent => :destroy
has_many :comments
scope :has_rating, lambda { |rating| where("rating = ?", rating) }
def self.has_more_than_100_char
where("LEN(descriptions) > 100")
end
end

如果有任何帮助,我将不胜感激..谢谢! :D

最佳答案

解决了!使用 length(description) 像这样:

where("length(descriptions) > 100")

关于mysql - 如何计算 Ruby on Rails 上的文本长度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22926856/

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