gpt4 book ai didi

ruby-on-rails - Rails无法将JSON识别为响应类型

转载 作者:行者123 更新时间:2023-12-03 02:53:41 26 4
gpt4 key购买 nike

我正在使用Dart作为客户端代码在Rails网站上进行无限滚动。我找到了一个 call 示例,令人惊讶的是,它第一次起作用。问题是它返回的HTML与单击下一步按钮时得到的HTML相同。我不需要整个页面,只需要滚动数据。我决定尝试使用JSON。该请求由Rails处理,但仍将其呈现为html。这是我所做的更改:

html请求

HttpRequest.request(url).then(onDataLoaded);

json请求
HttpRequest.request(url, responseType: 'json').then(onDataLoaded);

可变网址具有“下一步”按钮中网址的副本:
http://jazzcat.loc/artists?page=2

当我打印到浏览器控制台时,使用以下响应处理程序:
void onDataLoaded(HttpRequest resp) {
print(resp.statusText);
print(resp.responseHeaders);
print(resp.response);
}

状态文本为OK。
响应头是:
{x-runtime: 0.049101, date: Thu, 09 Jun 2016 23:51:05 GMT, x-content-type-options: nosniff, server: Apache/2.4.18 (Unix) Phusion_Passenger/5.0.24 PHP/5.5.34, x-powered-by: Phusion Passenger 5.0.24, x-frame-options: SAMEORIGIN, content-type: text/html; charset=utf-8, status: 200 OK, cache-control: max-age=0, private, must-revalidate, transfer-encoding: chunked, etag: W/"fb290bd42f831f80ea9359040304ea39", connection: Keep-Alive, keep-alive: timeout=5, max=100, x-xss-protection: 1; mode=block, x-request-id: 9921c6c7-2fb6-43b9-89d3-636fb4a3aec0}

rest.response为空。

我在Chrome浏览器中检查了网络数据,并在“响应”标签上看到了完整的html数据。 Dart代码必须认为它是json并且无法显示

这是来自json响应类型请求的Rails应用程序日志:
Started GET "/artists?page=2" for 127.0.0.1 at 2016-06-10 17:05:06 -0700
Processing by ArtistsController#index as */*
Parameters: {"page"=>"2"}
ArtistsController index method
Rendered artists/_list_subnav.html.erb (0.2ms)
Artist Load (1.3ms) SELECT `artists`.* FROM `artists` ORDER BY last_name, first_name LIMIT 25 OFFSET 25
(0.4ms) SELECT COUNT(*) FROM `artists`
Rendered artists/index.html.erb within layouts/application (22.9ms)
Completed 200 OK in 31ms (Views: 28.6ms | ActiveRecord: 1.7ms)

我有一个index.json.erb,我也尝试将其添加到 Controller 中:
def index
# Perform any filtering using ransack search
logger.debug "ArtistsController index method format"
@q = Artist.search(params[:q])
# Partition the output using kaminari page
@artists = @q.result.order('last_name', 'first_name').page(params[:page])
respond_to do |format|
format.html
format.json { render :json => @artists }
end
end

如何获得Rails渲染json?上面的代码如何设置格式?

更新

我已经完全重写了这个问题。

最佳答案

花了两天时间才找到它。您需要向请求添加一个Accept header 。这是我在上面解决问题的方法:

Map headers = {'Accept': 'application/json'};
HttpRequest.request(url, requestHeaders: headers).then(onDataLoaded);

关于ruby-on-rails - Rails无法将JSON识别为响应类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37736321/

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