摘要: 服务端webapi: public string getValue5([FromBody]List<Student> student) { return student[0].Name + " " + student[1].Name; } 客户端控制台: public static string H 阅读全文
posted @ 2021-04-17 18:13 当年小清新 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 解决跨域问题 1.webapi安装cors 2.WebApiConfig下添加 public static void Register(HttpConfiguration config) { config.EnableCors(new EnableCorsAttribute("*", "*", "* 阅读全文
posted @ 2021-04-17 09:45 当年小清新 阅读(523) 评论(0) 推荐(0) 编辑