我不確定我是否應該使用$.get
或$.getJSON.
在這個例子中我應該使用哪一個?
我的代碼:
if (isset($_GET['numberofwelds']) && isset($_GET['numberofconwelds']))
{
// Now we know both values definitely exist, VALIDATE them
$numwelds = $_GET['numberofwelds'];
$numconwelds = $_GET['numberofconwelds'];
if (is_int($numwelds) && is_int($numconwelds))
{
// Calculate your total
$total = $numwelds + $numconwelds;
echo json_encode($total);
}
else
「get,post或JSON」就像是問「蘋果,香蕉或飛機」。您無法比較JSON(用於序列化分層數據的格式)和GET/POST(兩種製作HTTP請求的方法)。 – meagar
區別在文檔中有解釋。將[this](http://api.jquery.com/jQuery.get/)的第一段與[this](http://api.jquery.com/jquery.getjson/)中的第一段進行比較。 – Jon
也可以看看緊接在句子後面的代碼:「這是一個簡寫的Ajax函數,它相當於」 – Quentin