我正在尝试编写一个简单的 Web 服务并在我的 Windows 手机中使用它。
我写了一个php脚本如下:
$PromotionCount=$_GET['count'];
$promotions = PromotionsAPI::RetrievePRomotions($PromotionCount);
while($row=mysql_fetch_array($promotions))
{
$rows[] = array ('CompanyName' => $row[0] ,
'CompanyPromotion' => $row[1],
'PromotionRating' => $row[2] ,
'PromotionPicPath' => $row[3],
'PromotionTitle' => $row[4],
'PromotionlikesCount' => $row[5],
'PromotionCommentsCount' => $row[6]);
}
echo json_encode($rows);
现在我将通过以下链接调用它。
http://localhost/php/promotionWork/API%20and%20Libraries/PromotionsAPI.php?count=3
从我的 Windows 手机中,我想获取我正在回显的编码 json 数据。我不知道是否可以以这种方式进行查询,或者是否有必要使用 SOAP 等。
那么,你们能否通过告诉我正确且简单的方法来完成此任务,为我指明正确的方向,如果我是对的,那么我如何能够获取我在 WINDOWS PHONE 应用程序中回显的 json 数据