快盘下载:好资源、好软件、快快下载吧!

快盘排行|快盘最新

当前位置:首页软件教程电脑软件教程 → vs2010-webapi开发http请求以及website中如何实现http请求

vs2010-webapi开发http请求以及website中如何实现http请求

时间:2022-11-01 13:25:06人气:作者:快盘下载我要评论

一、vs2010 webapi开发

第一步;创建
vs2010-webapi开发http请求以及website中如何实现http请求
第二步;离线安装NuGet
1、复制链接到浏览器打开;http://visualstudiogallery.msdn.microsoft.com/27077b70-9dad-4c64-adcf-c7cf6bc9970c
2、点击下载

3、双击安装
webapi
4、重新打开vs可查看到NuGet
vs2010
5、加载 Microsoft.AspNet.WebApi

Install-Package Microsoft.AspNet.WebApi -Version 4.0.30506

安装成功后;会引用webapi需要用到的dll

Microsoft.Web.Infrastructure
System.Net.Http
System.Web.Http
vs2010
vs2010
vs2010
webapi
6、在项目新增App_Start文件夹;并创建WebApiConfig.cs;用于添加api的路由配置

using System.Web.Http;

public static class WebApiConfig
{
    public static void Register(HttpConfiguration config)
    {
        config.Routes.MapHttpRoute(
            name: ;DefaultApi;,
            routeTemplate: ;api/{controller}/{action}/{id};,
            defaults: new { action = RouteParameter.Optional, id = RouteParameter.Optional }
        );
    }
}

7、在Global.asax的Application_Start中注册WebApiConfig
Global.asax

<% Application Codebehind=;Global.asax.cs; Inherits=;WebApiTestPro.Global; Language=;C#; %>

Global.asax.cs

void Application_Start(object sender, EventArgs e)
        {
            // 在应用程序启动时运行的代码
            WebApiConfig.Register(System.Web.Http.GlobalConfiguration.Configuration);

        }

8、新增apiControllers进行测试

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Http;
using WebApiTestPro.Controllers;
using WebApiTestPro.Models;
using System.Net.Http;
using Newtonsoft.Json;
using System.Text;

namespace WebApiTestPro.Controllers.Api
{
    public class TestController :ApiController
    {
        //GET api/<controller>
        [HttpGet]
        public HttpResponseMessage Get()
        {
            var product = new { id = 1, name = ;testName; };
            HttpResponseMessage result = new HttpResponseMessage();
            result.Content = new StringContent(JsonConvert.SerializeObject(product), Encoding.GetEncoding(;UTF-8;), ;application/json;);
            return result;
        }

        [HttpPost]
        public ResultModel PostTest(TestModel model)
        {
            ResultModel result = new ResultModel();
            ResultData data = new ResultData();
            result.res = true;
            data.res_code = ;200;;
            data.fail_msg = ;default;;
            data.timestamp = model.timestamp;
            data.content = model.content;
            result.res_data = data;
            return result;
        }
    }
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace WebApiTestPro.Models
{
    public class ResultData
    {
        public string res_code { get; set; }
        public string fail_msg { get; set; }
        public string sign { get; set; }

        public string timestamp { get; set; }

        public List<String> content { get; set; }
    }
}

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace WebApiTestPro.Models
{
    public class ResultModel
    {
        public Boolean res { get; set; }
        public ResultData res_data { get; set; }
    }
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace WebApiTestPro.Models
{
    public class TestModel
    {
        /// <summary>
	    /// 学生Id
	    /// </summary>
	    public int Id { get; set; }
	    /// <summary>
	    /// 学生姓名
	    /// </summary>
	    public string Name { get; set; }

        public string timestamp { get; set; }

        public List<String> content { get; set; }

        public string sign { get; set; }
    }
}

项目目录如下;
webapi
vs2010
至此;vs2010.net webapi开发测试完成;

二、在website项目中添加http接口请求

网站系统目录Bin下;点击右键;添加引用即可;
webapi
vs2010
vs2010

添加引用后启动;出现一个问题;提示json包版本没有找到;解决方案;在web.config中添加以下配置即可

<runtime>
    <assemblyBinding xmlns=;urn:schemas-microsoft-com:asm.v1;>
      <dependentAssembly>
        <assemblyIdentity name=;Newtonsoft.Json;   publicKeyToken=;30AD4FE6B2A6AEED; culture=;neutral;/>
        <bindingRedirect oldVersion=;0.0.0.0-6.0.0.0; newVersion=;6.0.0.0;/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>

vs2010

相关文章

  • vs中想要创建一个程序启动界面 vs2010窗体应用教程

    visual studio 2010中文旗舰破解版简称vs2010,这是由微软推出的一款集成开发环境,能够帮助用户轻松快速地创建 Windows 平台下的Windows应用程序和网络应用程序,​这里本人分享一个最简单的启动界面制作方法,只适用于C#窗体应用程序,下面我们就来看看详细的教程。...

网友评论

快盘下载暂未开通留言功能。

关于我们| 广告联络| 联系我们| 网站帮助| 免责声明| 软件发布

Copyright 2019-2029 【快快下载吧】 版权所有 快快下载吧 | 豫ICP备10006759号公安备案:41010502004165

声明: 快快下载吧上的所有软件和资料来源于互联网,仅供学习和研究使用,请测试后自行销毁,如有侵犯你版权的,请来信指出,本站将立即改正。