代码如下
<% test = {"xx"=>"oo"}%>
<%= test.to_json %>
客户端接收到的 http 响应如下:
<!DOCTYPE html>
<html>
<head>
<title>xxoo</title>
</head>
<body>
{"xx":"oo"}
</body>
</html>
我想要纯纯的 json 数据,怎么搞?看 guide 里面,说是要想下面这样,
render json: test
我尝试了,不行呀,报错
You invoked render but did not give any of :partial, :template, :inline, :file, :plain, :text or :body option.
环境 ruby 2.0.0p451 (2014-02-24) [i386-mingw32] Rails 4.1.0