如何在MVC4项目中调用/引用外部web api项目

本文关键字:项目 引用 外部 web api MVC4 调用 | 更新日期: 2023-09-27 18:04:29


我是Web API新手& &;MVC
我已经创建了新的WEB API &MVC解决方案单独现在我想参考MVC中的Web API动作方法,因此,以下代码我写的,
Web Api项目方

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Data;
using System.Net.Http;
using System.Web.Http;
using AttributeRouting.Web.Mvc;
using RegisterStudent_WebAPI.Models;
    namespace Register_Student_WebAPI.Controllers 
    {
        public class RegisterStudentController : ApiController
        {
            [Route("api/student")]
            [HttpGet]
            public IEnumerable<Student> GetStudents()
            {
                RegisterStudent_API_DB objRegisterStudent = new RegisterStudent_API_DB();
                List<Student> lstStudent = objRegisterStudent.GetStudent();
                return lstStudent ;
            }
        } }

网络。来自API的配置文件,

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web.Http;

namespace RegisterStudent_WebAPI
{
    public static class WebApiConfig
    {
        public static void Register(HttpConfiguration config)
        {

            config.Routes.MapHttpRoute(
                name: "DefaultApi",
                routeTemplate: "api/{controller}/{id}",
                defaults: new { id = RouteParameter.Optional }
            );
            // Uncomment the following line of code to enable query support for actions with an IQueryable or IQueryable<T> return type.
            // To avoid processing unexpected or malicious queries, use the validation settings on QueryableAttribute to validate incoming queries.
            // For more information, visit http://go.microsoft.com/fwlink/?LinkId=279712.
            //config.EnableQuerySupport();
            // To disable tracing in your application, please comment out or remove the following line of code
            // For more information, refer to: http://www.asp.net/web-api
            config.EnableSystemDiagnosticsTracing();

            config.Formatters.JsonFormatter.SupportedMediaTypes.Add(new System.Net.Http.Headers.MediaTypeHeaderValue("text/html"));
        }
    }
}


在MVC项目中,我在脚本标签(加载形式)中编写了以下代码,以参考WEB API服务,

$(document).ready(function () {   
        jQuery.support.cors = true;
        $.ajax({
            url: 'http://localhost:18715/api/student',
            type: 'GET',
            dataType: 'json',
            success: function (data) {
                alert('success');
            },
            error: function (x) {
                alert(x.status);
            }
        });
    });

如果我将Web API项目的参考添加到MVC项目,那么它工作得很好,但我的一个朋友告诉服务不应该这样引用,请指导我如何将托管/跨域运行的Web API项目引用/包括到我的MVC项目?

如何在MVC4项目中调用/引用外部web api项目

你所做的并不坏(至少-它没有被禁止;)),但是通过在MVC项目中直接引用WebAPI,你将它绑定到一个特定的应用程序,这将阻止你在其他项目/服务中重用API。

在我看来,WebAPI项目应该作为另一个应用程序托管(这取决于你是否应该是一个自托管的OWIN应用程序/webservice/简单的API应用程序),给你一些好处:

  • 它与MVC应用程序逻辑分离
  • 可以单独部署
  • 它可以被其他应用程序/服务使用
  • 更容易维护

把WebAPI想象成一个RESTful的web服务,一个可以被你的应用程序或第三方应用程序使用的API。

老实说,在MVC中直接使用WebAPI只是为了给你的视图提供一些数据似乎有点浪费。你所做的可以做感谢JsonResult动作在你的MVC控制器。这并不理想,但可以防止您创建另一个API项目。