我正在编写一个简单的 Sinatra Api,它返回一个特定 URL 的 Json 文件。
这是 server.rb 的代码
require 'sinatra'
set :public_folder, 'public'
get '/' do
'Hello world!'
end
get '/api/spells' do
content_type :json
File.read('public/spells.json')
end
但是,我一直收到没有此类文件的错误。请帮忙!谢谢!
Errno::ENOENT at /api/spells
No such file or directory - /spells.json