ruby-on-rails-7 问答列表

Rails 7.1,日志到 STDOUT 和 log/production.log

作者:Manuel Meurer 提问时间:11/15/2023

在新的 Rails 7.1.2 应用程序中,可以在以下位置找到以下行:config/environments/production.rb config.logger = ActiveSupport:...

Rails 7 可排序JS

作者:uma 提问时间:8/18/2023

我有一个 rails 应用程序,它包含用于付款的条带,我的控制台显示无法在“DOMWindow”上执行“postMessage”:提供的目标源(“https://js.stripe.com ') 与收...

如何验证与Rails中嵌套属性的关联?

作者:GeorgeH 提问时间:10/21/2023

我有一个包含许多 ListItems 的列表。 class List < ApplicationRecord has_many :list_items accepts_nested_attrib...

无法在 ruby on rails 中更新我的商店资料

作者:John Sall 提问时间:11/4/2023

这些是编辑和更新操作: def edit @store_to_edit = StorePost.find(params[:id]) end def update @store_to_e...

在 Rails 7 中使用多态关联的不允许的参数

作者:Saulinho 提问时间:11/4/2023

根据上图,我做了一个简单的例子。 型号: Person class Person < ApplicationRecord belongs_to :personable, polymorphic:...

如何将 Rails 应用程序 STDOUT 流式传输到 Cloudwatch?

作者:user1929618 提问时间:10/28/2023

在最新版本中,Rails 默认不写入生产 .log,而只写入 STDOUT。以前,我使用 awslogs.conf 将 log/production.log 文件发送到 Cloudwatch 组。我怎...

如何配置 Rails 以使用带有 RSpec 的模型中的子文件夹?

作者:B Seven 提问时间:10/30/2023

我在models文件夹内有子文件夹: 应用程序/模型/foos/bar.rb 自动加载路径在 application.rb 中配置: module AppName class Applicat...

无法将数据结构从 Rails 7 传递给 javascript 函数

作者:jamesc 提问时间:10/29/2023

我需要在 data-tinymce html 标签中保留结构以传递给 javascript 函数,但该结构不知何故没有被保留,这导致 javascript 函数中的方法失败。 结构是 { eve...

如何在 Rails 中覆盖 PostgreSQL 的 gen_random_uuid()?

作者:supersaidso 提问时间:10/12/2023

我想在PostgreSQL的gen_random_uuid()生成的uuid前面添加一个字符串,以用作我的一个模型的uuid(它不会是主键)。 想想 Stripe 的价格和客户 ID,以及"pric...

从设计的角度来看,实例化 ActiveModel::Model 类本身提供了什么?

作者:J.R. Bob Dobbs 提问时间:10/18/2023

假设 PORO 如下: class Player include ActiveModel::Model include ActiveModel::Validations attr_acces...


共55条 当前第1页