我正在尝试从特定于页面的GET请求中获取数据。
基本URL例如为https://example.com/pages/subpage
使用该页面上的控制台,它会为我提供仅适用于该特定页面的GET数据。
使用getJSON时可以设置基本URL和GET URL吗?
getJSON('https://api.example.com/api/pagedata', function(err, response) { }
更多说明: https://example.com/pages/subpage1,https://example.com/pages/subpage2和https://example.com/pages/subpage3在API(https://api.example.com/api/pagedata)中都具有相同的GET URL,但是响应数据将具有不同的值,具体取决于您所在的子页面。 / p>
答案 0 :(得分:0)
您具有网址A,B和C,然后可以通过使用参数使用相同的GET网址。 例如
在javascript中:
var page = "A";
getJSON('https://api.example.com/api/pagedata?current_page='+page, function(err, response) { }
注意:根据页面名称设置可变页面
在PHP中:
<?php
$current_page = $_GET["current_page"];
if($current_page=='A'){
// your code here for page A
}else if($current_page=='B'){
// your code here for page B
} else if($current_page=='C'){
// your code here for page C
}
?>
快乐编码:-)