在 Web API MVC 4 中找不到资源错误

The resource cannot be found error in web API MVC 4

我的网站 api 看起来工作正常,它以 json 格式显示数据

http://localhost:60783/api/employee/GetEmployeeList/

但是当我试图指出 .cshtm 文件时,它给了我:

 The resource cannot be found error . 

我的路由配置看起来像这样

routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

        routes.MapRoute(
            name: "Default",
            url: "{controller}/{action}/{id}",
            defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
        );

还有我的 webApiConfig :

 config.Routes.MapHttpRoute(
            name: "DefaultApi",
            routeTemplate: "api/{controller}/{action}/{id}",
            defaults: new { id = RouteParameter.Optional }
        );

我的 Global.asax :

        AreaRegistration.RegisterAllAreas();

        WebApiConfig.Register(GlobalConfiguration.Configuration);
        FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
        RouteConfig.RegisterRoutes(RouteTable.Routes);           
        BundleConfig.RegisterBundles(BundleTable.Bundles);

我有一个名为 EmployeeController 的控制器 我正在调用 api 使用

 public async Task<ActionResult> Index()
    {


        HttpResponseMessage response = await ServiceAccess.Get("Employee/GetEmployeeList", null);
        if (response.IsSuccessStatusCode)
        {
            List<Employee> model = await ServiceAccess.DeserializeAs<List<Employee>>(response);

            return View(model);
        }
        return Content("No Record");
    }

    public ActionResult EmployeeList()
    {
        return View();
    }

服务访问权限 class:

public static HttpClient httpClient;

    static ServiceAccess()
    {
        httpClient = new HttpClient();
        httpClient.BaseAddress = GeneralConstants.ServiceBaseURI;
        httpClient.DefaultRequestHeaders.Accept.Clear();
        httpClient.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

    }

    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    public static async Task<T> DeserializeAs<T>(HttpResponseMessage SerializedResponse)
    {
        return JsonConvert.DeserializeObject<T>(await SerializedResponse.Content.ReadAsStringAsync().ConfigureAwait(false));
    }

    //mis named the name should be GetMany
    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    public static async Task<HttpResponseMessage> GetAll(string uri)
    {
        HttpResponseMessage response = await httpClient.GetAsync(uri).ConfigureAwait(false);

        return response;
    }

Web 配置文件有这个

<add key="ServiceBaseURI" value="http://localhost:60783/api/" />

给我问题的 lnk :

http://localhost:60783/Employee/EmployeeList/

感谢任何帮助。

您的代码中几乎没有错误。如果您考虑并调试您的代码,您将得到答案。

  • 您的 API 控制器名称 EmployeeController 和 MVC 控制器名称 EmployeeController 相同。
  • 您需要提供员工 API 的正确 URL 在您的情况下它可能位于某个文件夹内,因为在一个控制器文件夹中您不能创建两个具有相同名称的控制器(在您的情况下看起来你的 MVC 和 Web API 控制器名称相同。
  • Pock the web API 使用 DHC 或 Postmen 的方法并检查你得到的响应并在你的 MVC 控制器中使用相同的 URL。