asp.net core MVC 中的 视图文件间 的跳转

视图内部跳转 分为 绝对路径 和 相对路径

视图相对路径 不需要加上 文件 后缀,如 .cshtml

视图绝对路径 需要加上 文件后缀 如.cshtml 并且 以 ~/ 开头,~/代表 整个项目的根目录开始

下面 举例 Views文件夹中内部 相对访问

public IActionResult Index(int id)
        {

            Student? student = _studentRepository.GetStudent(id);
            return View("../MyTest/Test");
        }

上面 代码 index方法 视图 在 Views/Home/Index下,它需要访问 Views/MyTest/Test 就需要先用 ../到Views目录下,然后 跟着 /MyTest/Test 这就可以访问到了,注意 Test没有后缀 cshtml

下面 举例 Views文件夹中 内部 绝对访问

public IActionResult Index(int id)
        {

            Student? student = _studentRepository.GetStudent(id);
            return View("~/Views/MyTest/Test.cshtml");
        }

~/代表 根目录,绝对访问 需要带上 .cshtml 文件后缀,否则出错。绝对访问能访问整个项目中所有位置的 文件

你可能感兴趣的:(.NET,mvc,c#,.net)