บริบท:สำหรับแอป Ruby on Rails สำหรับการเช่าจักรยานฉันใช้ gem globalize เพื่อจัดการกับการป้อนข้อมูล:description
ในภาษาต่างๆ
รัฐ Curent:การดำเนิน globalize ทำงานขึ้นอยู่กับสถานที่ของฉันฉันสามารถที่จะเก็บdescription
ในภาษาที่เฉพาะเจาะจง การป้อนข้อมูลสำหรับ:description
จัดการกับบนพื้นฐานของสถานที่เกิดเหตุของหน้าเว็บทั้งหมด
ซึ่งหมายความว่าทุกอย่างในหน้านี้จะต้องเปลี่ยนเป็นภาษาเพื่อเก็บไว้:description
ในภาษาที่ถูกต้อง
หรือฉันสามารถแสดงสถานที่ที่มีอยู่ทั้งหมดและแสดงdescription
ให้แต่ละสถานที่ได้ (โปรดดูรหัสความคิดเห็นด้านล่าง)
คำถาม:ฉันกำลังค้นหาวิธีที่จะให้ผู้ใช้เลือกภาษา:description
เพียงอย่างเดียวจากนั้นบันทึก:description
เป็นภาษาที่ถูกต้องโดยไม่ต้องเปลี่ยนภาษาของหน้าเว็บทั้งหมด
รหัส
แบบฟอร์ม
<div class="row">
<%# I18n.available_locales.each do |locale| %>
<!-- <h1><%#= locale %></h1> -->
<%= f.globalize_fields_for locale do |ff| %>
<div class="col-10">
<div class="form-group">
<label class="form-control-label text required" for="accommodation_category_description">Description</label>
<div><%= ff.text_area :description, :rows =>"5", :cols =>"30", class:"form-control is-valid text required" %></div>
</div>
</div>
<% end %>
<%# end %>
</div>
</div>
initializers / globalization.rb
module ActionView
module Helpers
class FormBuilder
#
# Helper that renders translations fields
# on a per-locale basis, so you can use them separately
# in the same form and still saving them all at once
# in the same request.
def globalize_fields_for(locale, *args, &proc)
raise ArgumentError, "Missing block" unless block_given?
@index = @index ? @index + 1 : 1
object_name = "#{@object_name}[translations_attributes][#{@index}]"
object = @object.translations.find_by_locale locale.to_s
@template.concat @template.hidden_field_tag("#{object_name}[id]", object ? object.id : "")
@template.concat @template.hidden_field_tag("#{object_name}[locale]", locale)
@template.fields_for(object_name, object, *args, &proc)
end
end
end
end