我目前将其作为一长串 gsub 中的一个:
gsub("{Company}", contact.company_name.clear_company.to_s).
但有时contact.company_name 为空。
所以我从长字符串中爆发出来是这样的:
subject.gsub("{Company}", contact.company_name.clear_company.to_s) unless contact.company_name.blank?
但这看起来又丑又麻烦。因为这是整个字符串的样子,所以每个字符串都可能为 nil,这会引发错误:
12 sub_message =
13 message.gsub("{FirstName}", contact.first_name).
14 gsub("{LastName}", contact.last_name).
15 gsub("{Title}", contact.title || "blank").
16 # gsub("{Company}", contact.company_name.clear_company).
17 gsub("{Colleagues}", colleagues.to_sentence).
18 gsub("{NextWeek}", next_week.strftime("%A, %B %d")).
19 gsub("{FollowingWeek}", (Date.today + 14.days).strftime("%A, %B %d")).
20 gsub("{UserFirstName}", contact.user.first_name).
21 gsub("{UserLastName}", contact.user.last_name).
22 gsub("{City}", contact.address.city.titleize || "default city").
23 gsub("{State}", contact.address.state || "default state").
24 gsub("{Zip}", contact.address.zip || "default zip" ).
25 gsub("{Street1}", contact.address.street1.titleize || "default street").
26 gsub("{Today}", (Date.today).strftime("%A, %B %d")).
27 gsub("{CustomField1}", contact.custom_field_1.to_s).
28 gsub("{PageBreak}", "p{page-break-after: always}. ")
我想做这样的事情
gsub("{Company}", contact.company_name.clear_company.to_s || "").
但这似乎不起作用。想法?