willyaguirre
25 Jul 2012, 8:26 AM
Ext.define('VE.store.Stusuario', {
extend: 'Ext.data.Store',
model: 'VE.model.Usuario',
autoLoad: true,
proxy: {
type: 'ajax',
url: 'http://localhost:8080/veronica/getAllUsers.html',
reader: {
type: 'json',
root: 'user',
successProperty: 'success'
}
}
});
I can't read this json
{
"users-result":{
"count":"4",
"users":[
{
"user":{
"username":"Willy",
"password":"1234",
"link":"/users/Willy"
}
},
{
"user":{
"username":"johny",
"password":"pachecho",
"link":"/users/johny"
}
},
{
"user":{
"username":"Henry1",
"password":"pass1",
"link":"/users/Henry1"
}
},
{
"user":{
"username":"Percy",
"password":"6666",
"link":"/users/Percy"
}
}
]
}
}
extend: 'Ext.data.Store',
model: 'VE.model.Usuario',
autoLoad: true,
proxy: {
type: 'ajax',
url: 'http://localhost:8080/veronica/getAllUsers.html',
reader: {
type: 'json',
root: 'user',
successProperty: 'success'
}
}
});
I can't read this json
{
"users-result":{
"count":"4",
"users":[
{
"user":{
"username":"Willy",
"password":"1234",
"link":"/users/Willy"
}
},
{
"user":{
"username":"johny",
"password":"pachecho",
"link":"/users/johny"
}
},
{
"user":{
"username":"Henry1",
"password":"pass1",
"link":"/users/Henry1"
}
},
{
"user":{
"username":"Percy",
"password":"6666",
"link":"/users/Percy"
}
}
]
}
}