欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

判断字符串 是否为空 有大用 有大大用 有大大大用

        public IActionResult Index(Person person)

        {

            if (String.IsNullOrEmpty(person.name))

            {

                return Content("请输入名字");

            }

            else

            {

                return View();

            }

        }


普通分类: