如何在html中正确显示此数组?

时间:2015-11-20 17:39:39

标签: javascript php html mysql arrays

我将数组从Php发送到Javascript,然后我尝试为该数组的每个值生成一个div以在html中显示它们,但不是为每个独立值创建一个div,而是将它们全部堆叠在一个单身。我在php中制作的数组似乎将我数据库中的所有值排列成单个字符串。 我该如何分开它们?

Here's how the error looks upfront

这是我的代码的一部分:

腓:


$query= "SELECT titulo FROM notas WHERE usuario_idusuario = '".$ide."'";


//Runs the search
$resultado = $conn->query($query);



if($resultado->num_rows>0){



 while($row = $resultado->fetch_assoc()){

  //inserts result in an array

   $contenido= array('titulo'=> $row['titulo']);

  //json_encode

   $objJson = json_encode($contenido["titulo"]);



//sends the array to javascript 

   echo "$objJson\n";  

}

}else{

  echo "Error";

}

$conn->close();

?>

的javascript:


   //response receives the array 
    success: function(response){

      console.log(response);
      console.log(response.length);


      var contenidoInt = new Array();

      contenidoInt = [{


        "titulo":response



      }];



      console.log(contenidoInt);
      console.log(contenidoInt[0].titulo);


      }


我希望有人可以帮助我,谢谢。

0 个答案:

没有答案