エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Modeling a Paginated API as a Lazy Stream
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Modeling a Paginated API as a Lazy Stream
You are integrating with a 3rd party application that contains statistics on the most popular bab... You are integrating with a 3rd party application that contains statistics on the most popular baby names for a given year. You have both high-level stats and per-name information you’d like to display. It’d be nice if you could write the code like this: class NamesController < ApplicationController def index @names = Names::Client.all_names end def show @name = Names::Client.find_name(params[:name

