以下是例子
1
2
3
4
5
6
7
def show
@widget = Widget(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @widget }
end
end
1
2
3
4
5
<html>
<body>
<p>Hello World</p>
</body>
</html>
1
2
3
4
5
6
7
def show
@widget = Widget(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @widget }
end
end
1
2
3
4
5
<html>
<body>
<p>Hello World</p>
</body>
</html>