从另一个网站调用MVC 3 Apicontroller

时间:2015-05-08 01:24:04

标签: asp.net-mvc-3 asp.net-web-api

我的项目中有一个mvc 3 API控制器

namespace Carabistouille.Controllers
{
    public class CarabistouilleController : ApiController
    {
        /// <summary>
        /// Method to retrieve all of the carabistouille in the catalog.
        /// Example: GET api/carabistouille
        /// </summary>
        [HttpGet]
        public HttpResponseMessage Get()
        {
            IEnumerable<Carabistouille.DB.Carabistouille> list = Carabistouille.DB.CarabistouilleDAL.GetAllCarabistouille();
            if (list != null)
            {
                return   Request.CreateResponse<IEnumerable<Carabistouille.DB.Carabistouille>>(HttpStatusCode.OK, list);
            }
            else
            {
                return Request.CreateResponse(HttpStatusCode.NotFound);
            }
        }
    }
}

我希望其他网站能够查询该API以获取数据 所以我做了这样的事情:

        $("#query_results").empty();
        $("#query_results").append('<table id="ResultsTable" class="BooksTable"><tr><th>Description</th><th>Auteur</th><th>Date</th></tr>');
        $.ajax({
            type: "get",
            contentType: "application/json; charset=utf-8",     

            url: "http://www.Carabistouile.ca/api/carabistouille",
            success: function(msg) {
                    var c = eval(msg.d);
                    for (var i in c) {
                            $("#ResultsTable tr:last").after("<tr><td>" + c.Description + "</td><td>" + c.Auteur + "</td><td>" + c.Date + "</td></tr>");
                        }
                }
        });

我得到的只是:

  

无法加载资源:net :: ERR_NAME_NOT_RESOLVED

这是我的项目架构

enter image description here

我错过了什么?

1 个答案:

答案 0 :(得分:1)

您在示例中给出的url返回404,这可能意味着此控制器应该处理的路由尚未在应用程序中注册

查看How to add Web API to an existing ASP.NET MVC 4 Web Application project?

实质上你需要打电话

WebApiConfig.Register(GlobalConfiguration.Configuration);

在global.asax.cs的Application_Start方法中,确保您的配置包含此控制器要处理的路由