1 回答
TA贡献1804条经验 获得超7个赞
您可以将此 id 传递给控制器的操作(函数)或您的 id 需要执行查询操作的任何 php 页面。
<script>
function getTreatmentId(id){
$.ajax({
type: "GET",
url: "host/controller/action",
dataType: 'json',
data: {
id: id,
},
success: function(response) {
console.log(response);
//here you can get response if you send from php-end
},
error: function(xhr) {
//do something on error
},
complete: function(){
//do something on complete
}
});
}
</script>
在 php-end 你可以通过这种方式获取 id
<?php
global $iController;
$id = isset($_GET['id']) ? $_GET['id'] : null;
$items = $iController->getItemByTreatmentId($id);
foreach($items as $item){
echo '
<div class="group">
<div class="classic_manicure">
<img src="'.$item['img_url'].'" alt="'.$item['name'].'" />
<h3>'.$item['name'].'</h3>
<p>'.$item['time'].' min</p>
<p>'.$item['price'].'$</p>
<button>BOOK IT</button>
</div>
';
}
?>
添加回答
举报