我正在进行Ext JS 5.1的在线课程,在本练习中我有一个service.php
文件,它连接到数据库并返回JSON数据。我试图显示这些数据,但它永远不会显示(在firebug中没有显示任何错误信息),我无法找到代码的问题。
这是商店的代码:
var storeUsuario = Ext.create('Ext.data.Store', {
model : 'js.clase.Usuario',
proxy: {
type: 'rest',
url: 'service.php?method=getUsuarios',
reader: {
type: 'json',
}
},
autoLoad: true
});
这是网格的代码:
Ext.create('Ext.grid.Panel', {
renderTo: Ext.getBody(),
store: storeUsuario,
width: 600,
height: 400,
title: 'Grid Usuarios',
columns: [
{
text: 'id',
dataIndex: 'id'
},{
text: 'nombre',
width: 100,
dataIndex: 'nombre'
},{
text: 'apellidos',
dataIndex: 'apellidos'
},{
text: 'email',
dataIndex: 'email'
},{
text: 'nacionalidad',
dataIndex: 'nacionalidad'
},{
text: 'rutaAvatar',
dataIndex: 'rutaAvatar'
}
]
});
和service.php
方法:
<?php
header('Content-Type: text/html; charset=utf-8');
$conexion = mysql_connect("127.0.0.1", "root", "");
mysql_select_db("usertest", $conexion);
$method = $_GET['method'];
switch($method) {
case "getUsuarios":
$query = "SELECT * FROM Usuario ORDER BY id ASC";
$result = mysql_query($query, $conexion) or die(mysql_error());
$numRows = mysql_num_rows($result);
$usuarios = array();
if ($numRows > 0) {
$i = 0;
while ($row = mysql_fetch_assoc($result)) {
$usuarios[$i] = $row;
$i++;
}
}
$usuariosJSON = json_encode($usuarios);
echo $usuariosJSON;
break;
}
?>
答案 0 :(得分:0)
您的PHP代码不会返回有效的JSon。
看到这个小提琴正常工作:https://fiddle.sencha.com/#fiddle/q9k
答案 1 :(得分:0)
根据this post,您应指定标题 我建议你回归'#34;手工制作&#34;像这样的json:
$data = /** whatever you're serializing **/;
$data_length = /* the length of the result according to the request response */;
header('Cache-Control: no-cache, must-revalidate'); // just to be sure
header('Content-Type: application/json');
echo "{ \"success\": true, \"total\": $data_length, \"records\": " . json_encode($data) . " }";
json数据可能需要[]
...
echo "{ \"success\": true, \"total\": $data_length, \"records\": [ " . json_encode($data) . " ] }";