返回的Ajax结果,将返回的对象循环到数据列表中

时间:2018-08-28 23:39:12

标签: javascript php ajax laravel

我当前正在使用刀片中的输入和ajax调用,以便将输入字段的值传递给查询端点的函数。这会在每次按键时调用。

当我在chrome中调试并检查“网络”标签时,可以看到它成功地从ajax调用返回了对象。问题是,我在附加到输入字段的数据列表中的对象上循环播放,并且没有填充结果。

这应该是一种自动完成功能,其中ajax调用查询并返回结果,该结果将在数据列表中显示和过滤。当我将对象以硬编码值复制到文件中时,在刀片中循环对象的方式起作用。我想知道我的Ajax是否需要其他东西才能正确地传递回去。

同样,我的Ajax调用成功并返回了对象,但是我需要做些什么才能使我的return response()->json($searchResults);返回到数据列表以进行输入?

controller.php

public function autoComplete(Request $request)
{
    if($request->ajax()){
       $search_result = $request->search_result;

       $service = new service();

        $searchResults = $service->getSearch($search_result);

        return response()->json($searchResults);
    }
}

view.blade.php

 <input id ="productInput"  class="uk-search-field" type="search" placeholder="search products..." list="returnedProducts">
    <datalist id="returnedProducts">
        @if ($searchResults->hits)
            @foreach($searchResults->hits as $arr)
                @foreach($arr as $obj)
                <option value="{{$obj->_source->category}}">{{$obj->_source->category}}</option>
                @endforeach
            @endforeach
        @endif
    </datalist>

<script type="text/javascript">

//input event handler
$('#productInput').on('input', function(){
    if($(this).val() === ''){
       return;
    }else{

       const searchResult = $(this).val(); 

       $.ajax({ url: '/account/autocomplete', 
                data: {
                    search_result:searchResult
                },
                "_token": "{{ csrf_token() }}",
                type: "POST", 
                success: function(response){
                    console.log(response);
                }
            });
    }

});
</script>

更新:

+"took": 3
+"timed_out": false
+"_shards": {#1141 ▶}
+"hits": {#1309 ▼
  +"total": 231
  +"max_score": null
  +"hits": array:10 [▼
      0 => {#1191 ▼
      +"_index": "products"
      +"_type": "product"
      +"_id": "1634"
      +"_score": 5.7772136
      +"_source": {#1214 ▼
       +"category": "General 1234:0 - Dark Green 123:25"

1 个答案:

答案 0 :(得分:1)

在我们聊天之后,将您的success回调替换为:

<script>
    success: function(response){
        let searchResult = response.hits.hits;
        for(let i = 0; i < searchResult.length; i++) {
            $("#returnedProducts").append("<option value=" + searchResult[i]._source.category + ">" + searchResult[i]._source.category + "</option>");
        }
    }

</script>