非同期処理の実装(シンプルバージョン)
背景
以下画面から検索を行った時、リストが表示される仕組みについて、非同期処理を実装したい。
環境
項目 | 内容 |
---|---|
OS.Catalina | v10.15.4 |
Ruby | v2.5.1 |
Ruby On Rails | v5.2.4.3 |
内容
対応1)検索ボタン押下時に呼び出されるアクションと紐つくビューをhtml→jsに変更する
以下、index.html画面から呼び出されるアクションについて、1行目の「remote: :true」を記述。
1 <%= form_tag(wordsearch_krowns_path, method: :get ,remote: :true) do %>
2 <input class="search-box__query" name="keyword" placeholder="作品名で検索" type="text" value="">
3 <button class="search-box__btn" title="検索" type="submit">
4 <i class="fas fa-search"></i>
5 </button>
6 </input>
7 <% end %>
こうすることで、「wordsearch」アクション=同名のアクションが呼ばれたのち、ビュー展開が「wordsearch.html.erb」→「wordsearch.js.erb」となる。
元々の画面描写は以下の通りレンダリングしている。13行目で検索結果リストをテーブルにて表示。ここを非同期で再描写する。
1 <!-- 詳細画面 -->
2 <title>subaco トップページ</title>
3
4 <div class="contents">
5 <!-- サイドコンテンツ(左側)表示 -->
6 <%= render "./shared/sidecontents" %>
7
8 <div class="main-contents">
9 <!-- メインコンテンツヘッダ部表示 -->
10 <%= render "mainheader"%>
11
12 <!-- メインテーブル定義 -->
13 <%= render "maintable" %>
14
15 <!-- クラウン表示 -->
16 <%= render "mainknowledge" %>
17
18 <!-- クラウンイメージ表示 -->
19 <%= render "mainimage" %>
20
21 <!-- main-contents 終了タグ -->
22 </div>
23
24 <!-- contents 終了タグ -->
25 </div>
対応2)非同期処理を実装する
以下の1行のみで完了。非常にカンタン。作法は、対象となるhtmlのクラスと、レンダリングするための記述のみ。
$('.main-tab').html("<%= escape_javascript(render 'maintable' ) %>");
これだけの改修で、非同期処理を実装出来るようになります。
Author And Source
この問題について(非同期処理の実装(シンプルバージョン)), 我々は、より多くの情報をここで見つけました https://qiita.com/dichikawa/items/1a84970e393be210ae3e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .