educoder/app/controllers/iframes_controller.rb

16 lines
270 B
Ruby

class IframesController < ApplicationController
layout false
def show
render :layout => false
end
# 渲染实训代码
def html_content
@contents = params[:contents] || ""
respond_to do |format|
format.js
format.html
end
end
end