web-dev-qa-db-ja.com

値とテキストフィールドを含むASP.NET MVC jqueryオートコンプリート

コントローラ

public ActionResult Search(string id)
{
     id= Request.QueryString["term"];         
     var routeList = db.Movies.Where(r => r.Title.Contains(id))
                   .Take(5)
                   .Select(r => new { id = r.MovieID, label = r.Title, name = "MovieID" });
     return Json(routeList, JsonRequestBehavior.AllowGet);
}

見る:

<input type="hidden"   id="MovieID"  name="MovieID" />
<input type="text" id="SelectedMovie" value=""/>
<script type="text/javascript" language="javascript">
   $("#SelectedMovie").autocomplete({
       source: function (request, response) {
           $.ajax({
              url: "/Transaction/Search", type: "POST", dataType: "json",                        
              data: { id: request.term }, 
              success: function (data) {
              response($.map(data, function (item) {                                
                return { label: item.label, value: item.id }; //updated code
               }));
             }
         });
     },
     select: function (event, ui) {
         $("#MovieID").val(ui.item.value);
         $("#SelectedMovie").val(ui.item.label);
         return false;
     }
  });
</script>

なんらかのビデオストアアプリがあります。映画をレンタルするときは、オートコンプリートを使用して選択できる映画のコンボボックスが必要です。また、ID(値)のみがデータベースに保存され、テキスト自体は保存されないことも要件です。

編集:ここに完全な作業例があります

17
Jalle

文字列のみをサーバー側のSearch()関数に渡すので、$.ajax()呼び出しを介して渡すdata要素を変更する必要があります。

public ActionResult Search(string id)//I think that the id that you are passing here needs to be the search term. You may not have to change anything here, but you do in the $.ajax() call
{
      id= Request.QueryString["term"];

      var routeList = db.Movies.Where(r => r.Title.Contains(id))//this is a text filter no?
                        .Take(5)
                        .Select(r => new { id = r.MovieID, label = r.Title, name = "MovieID" });
      return Json(routeList, JsonRequestBehavior.AllowGet);
}

$("#MovieID").autocomplete({
    source: function (request, response) {
        $.ajax({
            url: "/Transaction/Search", type: "POST", dataType: "json",
            //original code
            //data: { searchText: request.id, maxResults: 10 },
            //updated code; updated to request.term 
            //and removed the maxResults since you are not using it on the server side
            data: { id: request.term },

            success: function (data) {
                response($.map(data, function (item) {
                    //original code
                    //return { label: item.FullName, value: item.FullName, id: item.TagId }; 
                    //updated code
                    return { label: item.label, value: item.label, id: item.id };
                }));
            },
        select: function (event, ui) {
                //update the jQuery selector here to your target hidden field
            $("input[type=hidden]").val(ui.item.id);
        }
        });
    },
});

これで問題が解決するかどうかをお知らせください。

19
JoeFletch

.ajax()呼び出しがidで指定されていません。 data{}オブジェクト内にも、urlパラメータの一部としてquerystring内にもありません(どちらの方法でも機能します)。

したがって、Actionメソッドのnull値です。

とにかく、すぐにメソッドのid引数をRequest.QueryString["term"]で上書きします。なぜそれをするのですか?

'term' insideメソッドのリクエストを要求する代わりに、以下のように、それをActionメソッド自体にパラメーターとしてバインドするだけです。

public ActionResult Search(string term)
{
    var routeList = db.Movies.Where(r => r.Title.Contains(term))
            .Take(5)
            .Select(r => new { id = r.MovieID, label = r.Title, name = "MovieID" });
    return Json(routeList, JsonRequestBehavior.AllowGet);
}
4
Faust

まず、関数から次の戻り値を使用する必要があります。

_return { label: item.title, value: item.id };
_

documentation によると、labelおよびvalueプロパティを持つオブジェクトを返す必要があります(idプロパティはありません)。ラベルはユーザーに表示されるものであり、値はサーバーに投稿されるものです。

次に、Ajax呼び出しでsearchTextmaxResultsを渡すため、アクションメソッドにはpublic ActionResult Search(string searchText, int maxResults)の2つのパラメーターが必要です。

これらの変更を適用して、機能するかどうかを確認できますか?

3