码迷,mamicode.com
首页 > Windows程序 > 详细

web api post

时间:2014-07-24 21:36:32      阅读:282      评论:0      收藏:0      [点我收藏+]

标签:http   os   io   re   c   cti   ar   new   

这是显示端

function load() {
$.ajax({
type: "post",
url: "http://localhost:63211/api/MeetingRoomService/AddMeetiongType",
dataType: "json",
data: { "Typename": "123" },
success: function (data) {
renderContactList(data);
alert(data.data);
},error: function (XMLHttpRequest, textStatus, errorThrown) {

alert(data.data);
}
});
}

这是服务端

[HttpPost]
public ResultEntity<bool> AddMeetiongType([FromBody]MeetingType mt)
{
ExceptionManager.Handle(new Exception("TypeName>>>>>>" + mt.Typename));
ResultEntity<bool> result = new ResultEntity<bool>();
result.errors = new List<ErrorEntity>();
ErrorEntity error = new ErrorEntity();
result.action_code = ActionCode.SUCCESS.ToString();
try
{
Check.CheckParameter(mt.Typename);
if (bll.GetMeetingRoomTypeExist(mt.Typename) == false)
{
if (bll.AddMeetingRoomType(mt.Typename))
{
error.message = "插入成功";
result.data = true;

}
else
{
result.action_code = ActionCode.FAILED.ToString();
error.message = "插入失败";
result.data = false;

}
}
else
{
result.action_code = ActionCode.FAILED.ToString();
error.message = "此信息已经存在";

}


}
catch (ArgumentException e)
{
ExceptionManager.Handle(e);
result.action_code = ActionCode.FAILED.ToString();
error.message = e.Message;
}
catch (Exception ex)
{
ExceptionManager.Handle(ex);
result.action_code = ActionCode.FAILED.ToString();
error.message = "添加类型接口出错了!";
}
result.errors.Add(error);
return result;
}

第一个 web api post的程序

今天居然忘记了判断一个dataset是否为空的方法

ds.Tables[0].Rows.Count >0

web api post,布布扣,bubuko.com

web api post

标签:http   os   io   re   c   cti   ar   new   

原文地址:http://www.cnblogs.com/Demcia/p/3865870.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!