我試圖在Chrome中使用Sinatra顯示,結果爲ls
。但是資源管理器進入「連接...」循環。Sinatra在服務器端執行ls
我的代碼是:
require 'rubygems' if RUBY_VERSION < "1.9"
require 'sinatra/base'
#This is the webservice to launch the gamma project
#Using Request at the principal webpage
class MyApp < Sinatra::Base
get '/' do
result = exec "ls"
puts result
end
end
我不知道該puts
的,我想,也許是不apropiate方法。會發生什麼,我該如何解決?
PS:在資源管理器我用localhost.com:4567/