- 博客(7)
- 收藏
- 关注
原创 postman测试API,从中获取headers和body的值
从headers中获取值int uid = Convert.ToInt32(Request.Headers.GetValues("uid").ToList()[0]); HttpPostedFile imgFile = HttpContext.Current.Request.Files["HeadImg"]; //图片类型 string NickName =HttpContext.Cur...
2018-06-21 09:29:57 17585
原创 ASP.NET创建API(Rest、Route)
一、Rest APIpostman测试只要action的名字等于http请求动作的名称,或者action的名字是以http请求动作名称开头的都能匹配特点:1、POST——请求添加、PUT——请求修改、GET——请求查询、DELETE——请求删除 2、对资源的操作在http请求的动作上体现出来 3、URL只能体现出要操作的资源名称(controllers)默认约束:基...
2018-06-20 17:42:38 1477 1
原创 API注册、登录过滤器
1、此过滤器通过postman测试,通过controllerName和actionName来进行过滤,从Headers中传入uid和token来判断是否登陆成功using System.Collections.Generic;using System.Linq;using System.Net;using System.Net.Http;using System.Web;using Sy...
2018-06-20 16:47:45 747
原创 EF随机查询数据库表中数据
//查询HeadImg表所有数据,在10条数据中随机排列,获取第一条 dbcontext.Set<HeadImg>().Where(x => 1 == 1).OrderBy(x => Guid.NewGuid()).Take(10...
2018-06-20 16:05:03 2094
原创 ajax提交包含图片的form表单
提交图片须加contentType、processDate属性<script type="text/javascript"> function saveFrom(){ var data = new FormData(document.getElementById("formid")); $.ajax({ ...
2018-06-13 11:00:12 6204 1
原创 下拉框二级联动
1、controller IAreaBll bll = new AreaBll(); List<Area> SaveCodeList = bll.Search(x => x.ParentCode == 0); SelectList SaveCodeSelectList = new SelectList(SaveCodeList, "Code", "Name"); ViewD...
2018-06-13 10:38:25 213
原创 asp.net保存图片
HttpPostedFileBase logo = Request.Files["Imglogo"]; //从前台获取图片属性if (logo.ContentLength != 0){ string name = logo.FileName; //获取后缀名 ToLower转换成小写 string logojpg = Path.GetExtension(name).T...
2018-06-13 08:33:45 2202 1
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人