使用JSON从Windows Phone 8上的API获取信息

时间:2014-04-22 11:32:33

标签: c# json windows-phone-8

我是Windows Phone开发的新手,我不知道该怎么做 我有一个为足球俱乐部提供价值的API 这是我的服务器端代码:

public function getInfostradaTable()
{
    $season = wp_cache_get('seasonId', 'infostradaOverview');
    if ($season == false)
    {         
        $this->getEditionInfo();
        $season = wp_cache_get('seasonId', 'infostradaOverview');
        if ($season == false)
        {
            return NULL;
        }
    }
    $table = wp_cache_get('table', 'infostradaTable');
    if ($table != false)
    {
        return $table;
    }
    else 
    {                
        $this->getTableInfo();
        $table = wp_cache_get('table', 'infostradaTable');
        if ($table != false)
        {
            return $table;
        }
        else
        {
            return NULL;
        }
    }           
}

这是jsonrpc文件的一部分 如何使用JSON连接API并获取值?

1 个答案:

答案 0 :(得分:0)