为了账号安全,请及时绑定邮箱和手机立即绑定

用于填充 HTML 下拉列表的 PHP 查询响应(通过二维数组循环)

用于填充 HTML 下拉列表的 PHP 查询响应(通过二维数组循环)

泛舟湖上清波郎朗 2023-05-11 10:19:56
我从我的 PHP 代码和查询中得到了我需要的东西;除了我真的很难将数据带到前端以填充 HTML 下拉列表。这是我在 PHP 方面的内容;一切正常$app->get('/dlteopt', function ($request, $response, $args) {               $which = $_GET['id'];    if ($which) {        if ($which == 'table_1'){            $sql = "SELECT item1 FROM daya.blahblah";        } else if ($which == 'table_2'){            $sql = "SELECT item2 FROM daya.blahblah2";        } else if ($which == 'table_3'){            $sql = "SELECT item3 FROM daya.blahblah3";         }        $stid = oci_parse($this->db, $sql);                $list = array();        while ($list = oci_fetch_array($stid, OCI_ASSOC)) {            $list[] = $list;            var_dump($list); // this outputs the correct array I need, but cant bring it to front correctly into dropdown        }        if (!@oci_execute($stid)) {            $error = oci_error($stid);            throw new Exception($error['message']);        }         oci_execute($stid);    }这是 jQuery;控制台response日志只是which我随get请求发送的标志 ( ) 变量,它确定通过用户场景查询哪个表。我需要的数组被省略了...... let which = $(frm).attr("id");    $.get('dlteopt', {id: which }, function (response) {        console.log(response); // this just consoles as the $which var no array       $.each(response, function(index, value) {         // started logic to append values in option; but no array or obj found/brought in to iterate through, can handle this part if can get array       });    });html下拉;只是带有占位符的标准 HTML 选择,直到填充:<select name='agent' id='agent'><option>Loading...</option></select>我在这里做错了什么?或丢失/遗忘?
查看完整描述

1 回答

?
长风秋雁

TA贡献1757条经验 获得超7个赞

考虑以下 PHP。


public function process($which) {

  if(isset($which)){

    if ($which == 'a_table1'){

      $sql = "SELECT a_table1 FROM data.blah1";

    } else if ($which == 'a_table2'){

      $sql = "SELECT a_table2 FROM data.blah2";

    } else if ($which == 'a_table3'){

      $sql = "SELECT a_table3 FROM data.blah3"; 

    }

 

    $stid = oci_parse($this->db, $sql);

    oci_execute($stid); 

        

    if (!@oci_execute($stid)) {

      $error = oci_error($stid);

      throw new Exception($error['message']);

    }

 

    $myData = array();

    while ($list = oci_fetch_array($stid, OCI_ASSOC)) {

      array_push($myData, $list);

    }

 

    header('Content-Type: application/json');

    echo json_encode($myData);

 

  } else {

    header('Content-Type: application/json');

    echo json_encode(array("error" => "WHICH not assigned"));

  }

}

然后这应该发回数组的 JSON 数据。


例子


[{

  "A_ID":"OJC-FCT"

},{

  "A_ID":"DAL-ATCT"

},{

  "A_ID":"AFF-MIL-TWR"

},{

  "A_ID":"CNO-ATCT"

},{

  "A_ID":"GSN-FCT"

},{

  "A_ID":"CGI-NFCT"

},{

  "A_ID":"NDZ-MIL-TWR"

},{

  "A_ID":"FCS-MIL-TWR"

},{ 

  "A_ID":"LAL-FCT"

},{

  "A_ID":"LNK-ATCT"

},{

  "A_ID":"CHD-FCT"

},{

  "A_ID":"FLG-FCT"

},{

  "A_ID":"MCN-FCT"

},{

  "A_ID":"SKA-MIL-TWR"

}];

然后,您可以在每个循环中使用它来构建选项。


var which = $(frm).attr("id");

$.get('dlteopt', {id: which }, function (response) { 

  console.log(response);

  $("#agent").html("");

  $.each(response, function(index, value) {

    $("<option>").html(value['A_ID']).appendTo($("#agent"));

  });

});

您还可以简化 PHP 输出,使其只是项目的结果数组。


$myData = array();

while ($list = oci_fetch_array($stid, OCI_ASSOC)) {

  array_push($myData, $list['A_ID']);

}

那么你的循环也会被简化。


$("#agent").html("");

$.each(response, function(index, value) {

  $("<option>").html(value).appendTo($("#agent"));

});


查看完整回答
反对 回复 2023-05-11
  • 1 回答
  • 0 关注
  • 163 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信