16 lines
253 B
Ruby
16 lines
253 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
|
||
|
|
end
|
||
|
|
end
|
||
|
|
end
|