なぜかkeyupイベントが発火されるタイミングがおかしいです。具体的にいうとkeyupイベントはキーを入力した時に発火されるはずなのに今、文字を入力しても発火せず文字を一旦全部消すとイベントが発火されます。なぜでしょうか。何かアドバイスをもらえると嬉しいです。
jsファイル↓
$(function() { function appendUser(user) { var html = ` <div class="chat-group-form__field--right--search"> <div class="chat-group-user clearfix"> <p class="chat-group-user__name">${user.name}</p> <a class="user-search-add chat-group-user__btn chat-group-user__btn--add" data-user-id="${user.id}" data-user-name="${user.name}">追加</a> </div> </div> ` return html; }; //$(function() {などはjsの即時関数 即時関数→、関数を定義すると同時に実行するための構文 $("#user-search-field").on("keyup", function() { var input = $("#user-search-field").val(); //valueメソッドでフォームの値を取得 var href = window.location.href $.ajax({ type: 'GET', url: '/users', data: { keyword: input }, dataType: 'json' }) .done(function(users) { $(".user-search-result").empty(); if (users.length !== 0) { users.forEach(function(user){ var html = appendUser(user); $(".user-search-result").append(html); }); } }) .fail(function(){ alert('通信に失敗しました'); }); }); });
form.html.haml↓ こちらに#user-search-fieldなど書いております。
= form_for group do |f| - if group.errors.any? .chat-group-form__errors %h2= "#{group.errors.full_messages.count}件のエラーが発生しました。" %ul - group.errors.full_messages.each do |message| %li= message .chat-group-form__field .chat-group-form__field--left = f.label :name, class: 'chat-group-form__label' .chat-group-form__field--right = f.text_field :name, class: 'chat__group_name chat-group-form__input', placeholder: 'グループ名を入力してください' .chat-group-form__field.clearfix / この部分はインクリメンタルサーチ(ユーザー追加の非同期化のときに使用します .chat-group-form__field--left %label.chat-group-form__label{:for => "chat_group_チャットメンバーを追加"} チャットメンバーを追加 .chat-group-form__field--right--search .chat-group-form__search.clearfix %input#user-search-field.chat-group-form__input{:placeholder => "追加したいユーザー名を入力してください", :type => "text", :name => "keyword"}/ .user-search-result / この部分はインクリメンタルサーチ(ユーザー追加の非同期化のときに使用します / <div id='chat-group-users'> <div class='chat-group-user clearfix' id='chat-group-user-22'> <input name='chat_group[user_ids][]' type='hidden' value='22'> <p class='chat-group-user__name'>seo_kyohei</p> </div> </div> .chat-group-form__field.clearfix .chat-group-form__field--left .chat-group-form__field--right = f.submit class: 'chat-group-form__action-btn'
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/03/01 01:10
2018/03/01 01:46