ASP .NET MVC 4 之 WEB API

<script type="text/javascript">
    $(document).ready(function () {
        // 发送请求 ../../表示相对路径 
        $.getJSON("../../API/KNOLEDGE/",
        function (data) {
            //$.parseJSON(data)将json字符串格式化称json对象          
            var apple =$.parseJSON(data);
            var str = apple .name + ': $' + apple .price;
            alert(str);               
            });
        });
    });
</script>
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Web.Http;

namespace MvcKnolegeStation.API
{
    public class KnoledgeController : ApiController
    {
        // GET api/<controller>
        public string Get()
        {
            //返回json数组
            return   "{\"name\":\"苹果\",\"price\":\"12\"}";
        }
        
        ...


你可能感兴趣的:(ASP .NET MVC 4 之 WEB API)