一个页面中,要显示多个数据表的资料,请问要怎样写代码?下面代码就只查询到一个数据表!我想查询表个数据表!
JS
wx.request({
url: 'https://kk', //服务器地址
method: "GET",
data: {
zpcode: th.data.zpcode1, // th.data.items_1[0].code_no,kkres//'V2107133'
},
header:{
"content-type": "application/json;charset=UTF-8",
},
success: function (res) {
th.setData({
items12:res.data
})
console.log('数据 ',res.data)
} ,
PHP
<?php
$zpcode=$_GET["zpcode"] ;//接收参数
include("conn.php");
$sql=mysqli_query($conn,"select * from jl_yb where zpcode='".$zpcode."' order by sk_no DESC");
while($row = mysqli_fetch_assoc($sql)) {
$arr1[]=$row;
}
echo json_encode($arr1,JSON_UNESCAPED_UNICODE);//将请求结果转换为json格式
$conn->close();
?>
先去学习下SQL表连接知识吧。
https://www.runoob.com/sql/sql-join.html