0

我以前没有尝试过很多这样的事情,所以我想知道做我想做的事情的推荐路线是什么。

我正在尝试在 JSON 字典中返回食谱的 PunchFork.com api。这是一个例子

我将如何返回每个食谱的“标题”、“拇指”和“pf_url”,以便我可以在页面上显示它们?目前有几个选择用于创建 url 的值,但我不知道如何处理该 url 以便在页面上显示数据。

如果你有问题,就问吧。

4

1 回答 1

0

您使用什么语言生成网页?大多数语言都有将 JSON 字符串转换为该语言可以理解的对象的内置机制。

这是一个使用 PHP 生成 HTML 页面的示例,其中包含您引用的 API 中的所有图像:

$response = file_get_contents($url);

$object = json_decode($response);

// Now $object is an object with the same data represented in the JSON string,
//   and you can refer to its class members accordingly:

foreach ($object->recipes as $recipe)
{
    $imageUrl = $recipe->source_img;
    echo '<img src="$imageUrl" />';
}
于 2012-04-20T22:39:25.083 回答