使用ajax + js在symfony4中进行实时搜索 [英] live search in symfony4 using ajax+js

查看:85
本文介绍了使用ajax + js在symfony4中进行实时搜索的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在symfony 4下实现实时搜索,但即时通讯卡住了。
i希望能对您有帮助。

i want to implement a live search under symfony 4 but im stuck. i hope your help friends.

我的控制器

/**
 * @Route("/search", name="search")
 */
 public function searchAction(Request $request){
    $user = new User();

         $searchTerm = $request->query->get('search');        
         $em = $this->getDoctrine()->getManager();
         $results = $em->getRepository(User::class)->findOneBy(['email' => $searchTerm]);
         //$results = $query->getResult();

         $content = $this->renderView('search.html.twig', [
            'res' => $results,
            'val' => $searchTerm

]);

$response = new JsonResponse();
$response->setData(array('list' => $content));
return $response;
         }

我的脚本ajax
这是我的ajax脚本

my script ajax this my ajax script

    $.ajax({
        type: "GET",
        url: "{{ path('search') }}",
        dataType: "json",
        data: {search: input},
        cache: false,
        success: function (response) {
               $('.example-wrapper').replaceWith(response);
               //$('.example-wrapper').load("{{ path('search') }}?search="+ $search.val());
                console.log(response);
                 },
        error: function (response) {
               console.log(response);
                   }
      });  

search.html.twig

search.html.twig

    <form class="example-wrapper" role="search" method="post" action="{{ path('search') }}">
    <div>
        <input type="text" class="form-control" name="search" value="{{ val }}">
            <button type="submit" class="btn btn-success" name="sub">search</button>
    </div>
    </form>

    <div class="example-wrapper">
    {% for result in res %}
    <p style="display:inline-block;width:200px;">{{ result.fullname }}</p>
    <p style="display:inline-block;width:100px;">{{ result.username }}</p>
    <p style="display:inline-block;width:300px;">{{ result.email }}</p>
    <p style="display:inline-block;width:120px;">{{ result.roles[0] }}</p> 
    {% endfor %}
    </div>

搜索页面看起来除非取消ajax脚本,否则我看不到表格

the search page looks like that i cant see the form unless take off ajax script

推荐答案

关。 :)就我个人而言,我会这样做。

You're close. :) Personally I'd do something like this.

动作功能:

/**
 * Search action.
 * @Route("/search/{search}", name="search")
 * @param  Request               $request Request instance
 * @param  string                $search  Search term
 * @return Response|JsonResponse          Response instance
 */
public function searchAction(Request $request, string $search)
{
    if (!$request->isXmlHttpRequest()) {
        return $this->render("search.html.twig");
    }

    if (!$searchTerm = trim($request->query->get("search", $search))) {
        return new JsonResponse(["error" => "Search term not specified."], Response::HTTP_BAD_REQUEST);
    }

    $em = $this->getDoctrine()->getManager();
    if (!($results = $em->getRepository(User::class)->findOneByEmail($searchTerm))) {
        return new JsonResponse(["error" => "No results found."], Response::HTTP_NOT_FOUND);
    }

    return new JsonResponse([
        "html" => $this->renderView("search.ajax.twig", ["results" => $results]),
    ]);
}

您的 search.html.twig 不应包含结果的for循环,而应仅包含此内容而不是for循环:

Your search.html.twig should not contain the for loop with the results, but instead should just be this instead of the for loop:

<form id="search-form" class="example-wrapper" role="search" method="get" action="{{ path('search') }}">
    <div>
        <input type="text" class="form-control" name="search">
        <button type="submit" class="btn btn-success" name="sub">search</button>
    </div>
</form>

<div id="search-results" class="example-wrapper"></div>

<script type="text/javascript"><!--

jQuery(document).ready(function($){

    $('#search-form').submit(function(e){

        e.preventDefault();
        $('#search-results').html("");

        $.get("{{ path('search') }}/" + input, function(data, textStatus, xhr){

            if ("object" !== typeof data || null === data) {
                alert("Unexpected response from server.");
                return;
            }

            if (!data.hasOwnProperty("html") || typeof data.html != "string" || (data.html = data.html.trim()).length < 1) {
                alert("Empty response from server.");
                return;
            }

            $('#search-results').html(data.html);

        }).fail(function(xhr, textStatus, errorThrown){

            var error = "Unknown error occurred.";
            if ("object" === typeof xhr && null !== xhr && xhr.hasOwnProperty("responseJSON") && "object" === typeof xhr.responseJSON && xhr.responseJSON.hasOwnProperty("error") && "string" === typeof xhr.responseJSON.error && xhr.responseJSON.error.trim().length >= 1) {
                error = xhr.responseJSON.error.trim();
            } else if ("string" === typeof errorThrown && errorThrown.trim().length >= 1) {
                error = errorThrown.trim();
            }

            alert(error);

        });

    });

});

--></script>

然后应该有 search.ajax.html search.html.twig 所在的文件夹中,以包含结果循环。这应该仅包括以下内容:

You should then have search.ajax.html in the same folder as search.html.twig to contain the results loop. This should consist of only this:

{% if results is defined and results is iterable and results|length >= 1 %}
    {% for result in results %}
        <p style="display:inline-block;width:200px;">{{ result.fullname }}</p>
        <p style="display:inline-block;width:100px;">{{ result.username }}</p>
        <p style="display:inline-block;width:300px;">{{ result.email }}</p>
        <p style="display:inline-block;width:120px;">{{ result.roles[0] }}</p>
    {% endfor %}
{% endif %}

这篇关于使用ajax + js在symfony4中进行实时搜索的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆