我正在尝试将一些日志从服务器放到浏览器中。这就是我所做的:
step1有效但客户端无法在浏览器中打开,因为线程被阻止,redirect_to无法执行。
这是详细的代码。
def create
#some code ...
th = Thread.new{ start_server }
format.html { redirect_to(@execution, :notice => 'Execution was successfully created.')}
th.join
end