weixin_33739646 2014-10-16 05:24 采纳率: 0%
浏览 24

调用Web API方法

I am trying to call the DataByLocation with parameter but its calling DataByLocation function with no parameter. Am I missing something? Below is the code. Thanks in advance.

Js Code

 getData:function(){
        var _data = {_location:'ABC'};
        $.ajax({
            type: "POST",
            contentType: "application/json",
            url: 'ABService/api/ABService/DataByLocation',
            data: JSON.stringify(_data),
            success: this.receivedData                
        });
    }

Controller Code

[HttpPost]
public string DataByLocation(string _location)
{
    return _location;
}
[HttpPost]
public string DataByLocation()
{

    return "no parameter";
}

Config Code

    RouteTable.Routes.MapHttpRoute(
        name: "DefaultApi",
        routeTemplate: "api/{controller}/{id}",
        defaults: new { id = System.Web.Http.RouteParameter.Optional }
        );
  • 写回答

2条回答 默认 最新

  • weixin_33738555 2014-10-16 05:31
    关注

    Since you have not posted actual class name, i am assuming this to be TestController. Keeping that in mind, you can use following URLs for webapi. Assume , this is hosted in http://www.example.com`

    If you need execute without id , then url will be.

    http://www.example.com/api/Test/DataByLocation

    If with id then url will remain same, but you need to pass post object as JSON.

    EDIT

    Since controller name is ABService , and virtual directory is ABService

    URL will be http://www.example.com/ABService/api/ABService/DataByLocation

    SOURCE

    评论

报告相同问题?

悬赏问题

  • ¥15 解决一个加好友限制问题 或者有好的方案
  • ¥15 关于#java#的问题,请各位专家解答!
  • ¥15 急matlab编程仿真二阶震荡系统
  • ¥20 TEC-9的数据通路实验
  • ¥15 ue5 .3之前好好的现在只要是激活关卡就会崩溃
  • ¥50 MATLAB实现圆柱体容器内球形颗粒堆积
  • ¥15 python如何将动态的多个子列表,拼接后进行集合的交集
  • ¥20 vitis-ai量化基于pytorch框架下的yolov5模型
  • ¥15 如何实现H5在QQ平台上的二次分享卡片效果?
  • ¥30 求解达问题(有红包)