过滤器在带有 asp.net 的页面上不起作用

本文关键字:不起作用 net asp 过滤器 | 更新日期: 2023-09-27 18:35:52

我们正在为 asp.net 的学校制作一个项目,我们有一个页面,其中包含我们添加的电影,但现在我们想要一个过滤类型。我们编写的代码不起作用,搜索后我们仍然没有找到正确的答案。谁能帮我们找到它?

这是 de 控制器代码

   public class AllMoviesController : Controller
        {
            private MovieBankEntities db = new MovieBankEntities();
            // GET: AllMovies
            public ActionResult Index(int? page, string searchString, string searchByGenre)
            {
                var movies = db.movies.Include(m => m.genres);
                IQueryable<movie> movieByGenre = db.movies;

                //Dropdownlist
                var allMovies = from m in db.movies
                                select m;
                var allGenres = from g in db.genres
                                select g;

                ViewBag.searchByGenre = new SelectList(allGenres, "genre1", "genre1");
                if (!string.IsNullOrEmpty(searchByGenre))
                {
                    allGenres = allGenres.Where(s => s.genre1 == searchByGenre);
                }
                //Searchbox

                if (!String.IsNullOrEmpty(searchString))
                {
                    allMovies = allMovies.Where(s => s.movieTitle.Contains(searchString));
                }
                return View(allMovies.ToList().ToPagedList(page ?? 1, 12));
            }

这是我们的观点:

<div class="positionSearchbox">
    <div class="positionDropList">
        @using (Html.BeginForm("Index", "AllMovies", FormMethod.Get))
        {
            <p>
               Genre : @Html.DropDownList("searchByGenre", "Select a genre")
                <input type="submit" value="Filter" class="btn btn-danger" />
        <p>Search Movie</p>
                @using (Html.BeginForm(new { @class = "form-search" }))
                {
                    @Html.TextBox("SearchString", "", new
        {
            style = "background-color: #f9f9f9; font-size: 16px; height: 35px; width: 130px; padding-left:10px; padding-right: 10px; -moz-border-radius: 2px; -webkit-border-radius: 2px; border-radius: 2px; float:left; margin-top:-35px; margin-left:100px;"
        })
                    @*<div>@Html.TextBox("SearchString") &nbsp;&nbsp; <input class="bntSearch" type="submit" value="Search" /></div>*@
                }
            </p>
        }
    </div>

</div>

过滤器在带有 asp.net 的页面上不起作用

电影和类型有什么关系?

在代码中,您将过滤流派的集合:

if (!string.IsNullOrEmpty(searchByGenre))
{
    allGenres = allGenres.Where(s => s.genre1 == searchByGenre);
}

但是,您实际上从未对allGenres变量执行任何操作。 您只将影片返回到视图:

return View(allMovies.ToList().ToPagedList(page ?? 1, 12));

听起来您想按所选类型过滤电影。 电影是否具有导航到流派对象的.Genre属性? 像这样的东西?

if (!string.IsNullOrEmpty(searchByGenre))
{
    allMovies = allMovies.Where(m => m.Genre.genre1 == searchByGenre);
}

还是对象以其他方式相关? 由于您不显示对象的结构,我只能猜测。 但关键是allGenres变量似乎在代码中没有任何用途。