私は現在Railsプロジェクトに取り組んでおり、次のようにLayarAPIで使用するjson_builderを使用してビューを構築しています。
layer "Layer name"
errorString "ok"
errorCode 0
hotspots @inspections do |inspection|
id inspection.slug
anchor do
geolocation do
lat inspection.lat
lon inspection.lng
end
end
text do
title inspection.name
description "#{inspection.rating} out of 5"
imageURL "http://my-url.com/assets/rating#{inspection.rating}.png"
end
end
ただし、このビューをブラウザーにロードするtitle
と、JSONの一部が表示されません。私はこれをlayout_helper
ファイル内のヘルパーメソッド(nifty-generatorsを使用しています)に絞り込むことができました。これも。という名前title
です。このヘルパーは必要ないので、clear_helpers
この特定のコントローラーアクションのみを実行する方法はありますか?それとも、これを行うためのより良い方法がありますか?(おそらくお分かりのように、私はRailsにかなり慣れていません!)