educoder/app/controllers/iframes_controller.rb

16 lines
270 B
Ruby
Raw Normal View History

2017-08-04 09:38:10 +08:00
class IframesController < ApplicationController
layout false
def show
render :layout => false
end
# 渲染实训代码
def html_content
@contents = params[:contents] || ""
respond_to do |format|
format.js
2017-08-23 10:01:24 +08:00
format.html
2017-08-04 09:38:10 +08:00
end
end
end