doudi8829 2013-08-26 20:55
浏览 27
已采纳

试图将数组返回到表中的列表

Jquery - I am getting undefined but in the php is giving the response with my table information.

function formfill(dblist) {
    var tableheader = "<thead><tr><th>Database Nick</th><th>Database IP</th> <th></th></tr></thead>";

    $('#table2').empty();
    $('#table2').append(tableheader);

    $.each(dblist, function (key, value) {
        $('#table2').append('<tr><td>' 
        + dblist['DBNick'] 
        + '</td><td>' 
        + dblist['DBIP'] 
        + '</td><td><input class="add" id="add" name="add" value="add" type="submit"></input></td></tr>');

    }); 
}

$('#userlist').on('change', function () {
    var selected = $('#userlist').val();

    console.log(selected);

    $.ajax({
        url: '/php/user/userdbtable.php',
        type: 'POST',
        data: { user: selected },
        success: function (data) {
            formfill(data)
        },
        error: function (xhr, status, err) { console.log(xhr, status, err); }
    });
});

Here is the php it is sending out the correct data but i cant figure out how to pull it from the object.

<?php 
session_start(); 

include '../connect/anonconnect.php'; 

$myusername= $_POST['user'];

$useridsql = $dbh->prepare("SELECT * FROM Users WHERE UserLogin= :login");
$useridsql->execute(array(':login' => $myusername));
$useridsql = $useridsql->fetch();

$userid = $useridsql['idUser'];

$query = 'SELECT * FROM DBList  INNER JOIN UserDBList 
    ON DBList.idDatabase = UserDBList.idDatabase ';//WHERE UserDBList.idUser = '.$userid; 
$sql = $dbh->prepare($query); 
$sql->bindParam(':username', $myusername, PDO::PARAM_STR, 12); 
$sql->execute(); 
$user = $sql->fetchAll(PDO::FETCH_ASSOC); 

if($sql->rowCount() == 1){ 
    header('Content-type: application/json'); 
    echo json_encode($user,JSON_FORCE_OBJECT); 
} 
else { 
    echo 0; 
}   
?>
  • 写回答

1条回答 默认 最新

  • douang1243 2013-08-26 21:11
    关注

    I think that your loop has an error. It should look like this:

    $.each(dblist, function (index, item) {
        $('#table2').append('<tr><td>' 
            + item['DBNick'] 
            + '</td><td>' 
            + item['DBIP'] 
            + '</td><td><input class="add" id="add" name="add" value="add" type="submit"></input></td></tr>');
    
    }); 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥20 机器学习能否像多层线性模型一样处理嵌套数据
  • ¥20 西门子S7-Graph,S7-300,梯形图
  • ¥50 用易语言http 访问不了网页
  • ¥50 safari浏览器fetch提交数据后数据丢失问题
  • ¥15 matlab不知道怎么改,求解答!!
  • ¥15 永磁直线电机的电流环pi调不出来
  • ¥15 用stata实现聚类的代码
  • ¥15 请问paddlehub能支持移动端开发吗?在Android studio上该如何部署?
  • ¥20 docker里部署springboot项目,访问不到扬声器
  • ¥15 netty整合springboot之后自动重连失效