json转换重命名对象中的字段

时间:2016-12-29 15:32:22

标签: javascript angularjs json get

我有一个包含字符串数组的Object数组。该对象动态填充并返回如下值:

enter image description here

但是当我调用Get时,答案的标签已经改变了:

enter image description here

必须在角度数据绑定上使用该字段,我不能使用提供<>的字段因为它发错了。

为什么要替换标签以及如何修复?

PS.I我读过类似的问题,这些问题带来了序列化问题,但我没有在API中明确设置它,老实说也不知道它是如何工作的。

根据要求:

namespace Controllers
{
    public class CController : ApiController
    {

        [HttpGet]
        public HttpResponseMessage GetAll_FullDetail()
        {
            try
            {
                return Request.CreateResponse(HttpStatusCode.OK, new CategoryDA().GetAll_FullDetail());
            }
            catch (Exception ex)
            {
                return Request.CreateResponse(HttpStatusCode.InternalServerError, ex.ToString());
            }
        }
    }
}

0 个答案:

没有答案