browser
gemを使用してFacebookブッククローラのプレビューを作成しています。問題はレンダリングポイントにあります。コントローラのブロックを設定する方法がわかりません。現在、私は以下を持っていますFacebookクローラのレンダリングの問題 - Ruby On Rails - ブラウザの宝物
def show_preview
@question = to_array(@question)
question_package = formatting_questoins(@question,params[:id].to_i)
@searched_question = question_package.first
respond_with do |format|
format.html { render 'show_preview' }
end
end
何もレンダリングしません。私は試しました
respond_with do |format|
format.html { render 'show_preview' }
format.json
end
しかし、それは何もレンダリングしません。どんな助けにも感謝しています