温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

怎么用ASP.NET MVC获取多级类别组合下的产品

发布时间:2022-10-20 15:02:05 来源:亿速云 阅读:85 作者:iii 栏目:开发技术

这篇文章主要介绍“怎么用ASP.NET MVC获取多级类别组合下的产品”的相关知识,小编通过实际案例向大家展示操作过程,操作方法简单快捷,实用性强,希望这篇“怎么用ASP.NET MVC获取多级类别组合下的产品”文章能帮助大家解决问题。

标题不能完全表达本意,确切的情景需要展开说。假设有三级分类,关于分类这样设计:

    public class Category
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public int ParentId { get; set; }
    }

然后产品可以属于多个分类,以下的Categories属性值是以英文逗号隔开、由分类编号拼接而成的字符串。

    public class Product
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string Categories { get; set; }
    }

由于种种原因,Categories属性值只是存储了由第三级分类编号拼接而成的字符串。

在前端,需要把分类作为查询条件来查询产品,可能只选择一级分类,把一个数字字符串(比如"1")发送给服务端;可能同时选择一级和二级分类,也把一个数字字符串(比如"1,2")发送给服务端;当然,也有可能同时选择一级、二级和三级分类作为查询条件(比如"1,2,3")。换句话说,如果诸如"1"或"1,2"或"1,2,3"这样的查询条件转换成数组后,如果数组的每一个元素都被包含在Product的Categories属性值转换成的数组中,那这个产品就符合搜索条件。

简单来说,是这样:假设搜索条件是"1,2",Product的Categories属性值为"1,3,2,5",我们不是判断"1,2"这个字符串是否包含在"1,3,2,5"字符串中,而是把"1,2"先split成数组,叫做array1, 把"1,3,2,5"也split成数组,叫做array2,最后判断array1的每个元素是否都被包含在array2中。

还有一个问题需要解决:当前的Product的Categories属性值只存储了所有第三级分类编号拼接成的字符串,而前端输入的搜索条件可能会包含一级分类或二级分类等,所以,我们需要把Product转换一下,希望有一个类的某个属性值能存储由一级、二级、三级分类拼接而成的字符串。

    public class ProductWithThreeCate
    {
        public int Id { get; set; }
        public string Name { get; set; }
        public string AllCategoreis { get; set; }
    }

以上, AllCategoreis属性值就用来存储由一级、二级、三级分类拼接而成的字符串。

有一个方法获取所有分类:

        static List<Category> GetCategories()
        {
            return new List<Category>()
            {
                new Category(){Id = 1, Name = "根", ParentId = -1},
                new Category(){Id = 2, Name = "一级分类1",ParentId = 1},
                new Category(){Id = 3, Name = "一级分类2", ParentId = 1},
                new Category(){Id = 4, Name = "二级分类11",ParentId = 2},
                new Category(){Id = 5, Name = "二级分类12",ParentId = 2},
                new Category(){Id = 6, Name = "二级分类21",ParentId = 3},
                new Category(){Id = 7, Name = "二级分类22",ParentId = 3},
                new Category(){Id = 8, Name = "三级分类111",ParentId = 4},
                new Category(){Id = 9, Name = "三级分类112",ParentId = 4},
                new Category(){Id = 10, Name = "三级分类121",ParentId = 5},
                new Category(){Id = 11, Name = "三级分类122",ParentId = 5},
                new Category(){Id = 12, Name = "三级分类211",ParentId = 6},
                new Category(){Id = 13, Name = "三级分类212",ParentId = 6},
                new Category(){Id = 14, Name = "三级分类221",ParentId = 7}
            };
        }

有一个方法获取所有产品:

        static List<Product> GetProducts()
        {
            return new List<Product>()
            {
                new Product(){Id = 1, Name = "产品1",Categories = "10,12"},
                new Product(){Id = 2, Name = "产品2", Categories = "12,13"},
                new Product(){Id = 3, Name = "产品3",Categories = "10,11,12"},
                new Product(){Id = 4, Name = "产品4",Categories = "13,14"},
                new Product(){Id = 5, Name = "产品5",Categories = "11,13,14"}
            };
        }

接下来的方法是根据搜索条件(比如是"1,2")来查找满足条件的ProductWithThreeCate集合,如下:

        /// <summary>
        /// 获取满足某些条件的集合
        /// </summary>
        /// <param name="query">以英文逗号隔开的字符串,比如:2,5</param>
        /// <returns></returns>
        static List<ProductWithThreeCate> GetResultByQuery(string query)
        {
            //最终结果
            List<ProductWithThreeCate> result = new List<ProductWithThreeCate>();
            //临时结果 此时ProductWithThreeCat的属性AllCategoreis包含所有一级、二级、三级分类ID拼接成的字符串
            List<ProductWithThreeCate> tempResult = new List<ProductWithThreeCate>();
            //获取所有的产品
            List<Product> allProducts = GetProducts();
            //遍历这些产品
            foreach (var item in allProducts)
            {
                ProductWithThreeCate productWithThreeCate = new ProductWithThreeCate();
                productWithThreeCate.Id = item.Id;
                productWithThreeCate.Name = item.Name;
                //所有一级、二级、三级拼接成以英文逗号隔开的字符串
                string temp = string.Empty;
                //当前产品只包含三级拼接成的、也是以英文隔开的字符串,split成数组
                string[] theThirdCates = item.Categories.Split(',');
                //遍历这些三级数组
                foreach (string i in theThirdCates)
                {
                    //三级类别转换成整型
                    int theThirdInt = int.Parse(i);
                    //获取三级类别
                    Category theThirdCate = GetCategories().Where(c => c.Id == theThirdInt).FirstOrDefault();
                    //获取二级类别
                    Category theSecondCate = GetCategories().Where(c => c.Id == theThirdCate.ParentId).FirstOrDefault();
                    //获取一级类别
                    Category theFirstCate = GetCategories().Where(c => c.Id == theSecondCate.ParentId).FirstOrDefault();
                    temp += i + "," + theSecondCate.Id.ToString() + "," + theFirstCate.Id.ToString() + ",";
                }
                //去掉最后一个英文逗号
                temp = temp.Substring(0, temp.Length - 1);
                //转换成集合,去除重复项,比如不同的三级可能有相同的一级或二级父类
                IEnumerable<string> tempArray = temp.Split(',').AsEnumerable().Distinct();
                //所有一级、二级、三级拼接成以英文逗号隔开的字符串,但已经去除了重复的一级和二级
                string tempagain = string.Empty;
                //再次遍历集合拼接成字符串
                foreach (var s in tempArray)
                {
                    tempagain += s + ",";
                }
                productWithThreeCate.AllCategoreis = tempagain.Substring(0, tempagain.Length - 1);
                tempResult.Add(productWithThreeCate);
            }
            //遍历临时结果
            foreach (var item in tempResult)
            {
                //把当前包含一级、二级、三级的,以英文逗号隔开的字符串split成数组
                string[] itemArray = item.AllCategoreis.Split(',');
                //把当前查询字符串split成数组
                string[] queryArray = query.Split(',');
                //如果queryArray的每一个元素都被包含在itemArray中,那就保存起来
                if (queryArray.All(x => itemArray.Contains(x)) == true)
                {
                    result.Add(item);
                }
            }
            return result;
        }

客户端的调用如下:

            List<ProductWithThreeCate> result = GetResultByQuery("2,5");
            //遍历最终的结果
            foreach (var item in result)
            {
                Console.WriteLine(item.Name+ "  " + item.AllCategoreis);
            }
            Console.ReadKey();

关于“怎么用ASP.NET MVC获取多级类别组合下的产品”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识,可以关注亿速云行业资讯频道,小编每天都会为大家更新不同的知识点。

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI