从客户端发送JSON,后端接收为null([httpGet])

时间:2017-12-15 20:43:11

标签: c#

我从angular.js的客户端发送这个json:

{"variable": "something"}

我正在学习使用visual studio c#创建Web服务,每当我尝试发送JSON时,我都会以与我一样的方式执行此操作,并且始终会收到它们(问题出在后端) , 我确定)。在发出Web请求时,收到的JSON始终为null。我该如何解决?

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

namespace pruebaservicioweb.Controllers
{
   public class EstudianteController : ApiController
   {
    [HttpGet]
     public dynamic ReadJSON([FromBody] dynamic  parameter)
     {
        string json = parameter.variable;
        return json;
      }
   }
}

0 个答案:

没有答案