我使用Gon gem將一些數據從Rails發送到BackBone。 我application_controller.rb
:應用程序佈局在render_to_string之後以純文本形式加載
class ApplicationController < ActionController::Base
before_action :init_gon
def init_gon
gon.me = render_to_string(template: 'users/_me.json.jbuilder')
end
end
所以在此之後,如果我打開我的web應用程序的任何頁面,它只顯示HTML爲純文本:
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns="" xmlns="http://www.w3.org/1999/xhtml">
<head>
.....
我該如何處理呢?
我只是用如你所說gon.jbuilder延伸,和所有的作品。非常感謝匹配! – kuatro