我在Heroku上运行一个Ruby应用程序。该应用程序返回一个JSON,当我进入浏览器的调试器时可以访问该JSON。 JSON响应具有以下模板:
rates = {
"Aluminium" => price[1],
"Copper" => price_cu[1],
"Lead" => price_pb[1],
"Nickel" => price_ni[1],
"Tin" => price_sn[1],
"Zinc" => price_zn[1],
}
示例回复:
{
"Aluminium":"1765.50",
"Copper":"7379.00",
"Lead":"2175.00",
"Nickel":"14590.00",
"Tin":"22375.00",
"Zinc":"2067.00"
}
我为实现这个目的而编写的代码是:
Test.rb
class FooRunner
def self.run!
#calculations_for_rates
rates.to_json
end
if __FILE__ == $0
puts FooRunner.run!
end
app.rb
require 'sinatra'
require './test.rb'
result = FooRunner.run!
File.open('output.json','w') do |f|
f.write result
end
content_type :json
result
当我尝试使用
访问此链接时$.getJSON('app-url',function(data){
console.log(data);
});
它给我一个错误说
No 'Access-Control-Allow-Origin' header is present on the requested resource.
有没有办法让我通过将JSON写入HTTP响应来直接访问JSON响应?
答案 0 :(得分:1)
所以我猜测你发出get
请求的页面不是由Sinatra提供的。您可以将标头Access-Control-Allow-Origin: *
添加到该请求中,以使其正常工作。
This answer通过response['Access-Control-Allow-Origin'] = *
或headers( "Access-Control-Allow-Origin" => "*" )
该答案还列出this blog post作为Sinatra中跨源资源共享的参考。