gpt4 book ai didi

ruby - 如何转义 Ruby 字符串插值?

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

给定这段代码:

has_many :foos, :finder_sql = <<-SQL
select * from foos where bars = #{id}
SQL

#{id} 部分被过早插入。

我如何逃脱它?

最佳答案

在定界符两边加上单引号:

has_many :foos, :finder_sql = <<-'SQL'
select * from foos where bars = #{id}
SQL

关于ruby - 如何转义 Ruby 字符串插值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2052724/

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