gpt4 book ai didi

javascript - Rails 将请求解析为 html,即使它是 json

转载 作者:行者123 更新时间:2023-11-28 05:40:59 26 4
gpt4 key购买 nike

我正在尝试使用 Rails 创建一个 api。当我尝试在浏览器中发出带有 json 的 ajax 请求时,如下所示:

$.ajax({
type: "GET",
url: 'http://localhost:3000',
dataType: "json",
contentType: "application/json; charset=utf-8"
});

rails 服务器将其视为 html,从日志中可以看出:

Started GET "/" for ::1 at 2016-08-12 13:52:00 -0400
ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
Processing by LandingsController#index as HTML

它应该显示为 JSON,因为请求是 JSON。

最佳答案

这取决于您的路由设置方式,而不仅仅是您在请求中传递的内容。您应该在 routes.rb 中设置默认格式,如下所示:

root 'your_root_controller#index', format: 'json'

应该适用于 Rails 4 和 5。

关于javascript - Rails 将请求解析为 html,即使它是 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38923853/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com