控制器要求在入门时下载

时间:2016-12-27 08:24:03

标签: c# .net asp.net-mvc asp.net-web-api2

我想在web api 2中使用简单的Get函数, 在控制器中我创建了一个对象的实例,我从引用的dll中获取但是没有输入get并使用该对象,它要求我下载exmp:localhost:6969 / api /测试让我下载测试

我做错了什么

public class TestController : ApiController
{

    public string Get()
    {
        MyObject obj = new MyObject();
        string getText = MyObject.Getsomething();

        return getText;
    }
}

1 个答案:

答案 0 :(得分:3)

这是因为您选择的浏览器并不了解您对从API返回的给定Content-Type所做的操作。

尝试使用postman之类的内容来测试您的API,它比使用浏览器更灵活。