如何使 EXT JS 模型和代理存储工作? (please_help!)
How to make EXT JS model and proxy store work? (please_help!)
我还没有理解如何使用 REST link 服务器数据和表单字段 api。
我有一些选择字段的表格。我对服务器上的这个特别字段有值。我认为表单可以从存储模型中获取数据(y/n?)。如果这是真的,我有一个问题:如何将现有表单添加到模型中?
所以主要目标 - 从服务器获取值到现有表单的现有选择字段 trought REST API.
这是我现在拥有的:
-代理商店:
Ext.define('Foresto.store.RESTstore',{
extend: 'Ext.data.Store',
storeID:'reststore',
proxy: {
type:'rest',
url:'http://localhost:6666/api/form',
reader:{
type: 'json',
root: ''
}
},
autoLoad: true});
-一个来自表格:
Ext.define('Foresto.view.forms.Cutarea', {
extend: 'Ext.form.Panel',
title: 'ForestoL',
header: {
cls: 'header-cls',
},
scrollable: true,
xtype: 'forestoL',
url: 'save-form.php',
items: [{
xtype: 'selectfield',
label: 'Field1',
name: 'name'
},{
xtype: 'selectfield',
label: 'Field2',
name: 'allotment'
}] ...
请帮助!
谢谢,
阿图尔.
请参阅 this fiddle 基本远程组合框。
{
xtype: 'combo',
fieldLabel: 'My Combo',
valueField: 'id',
displayField: 'title',
anchor: '100%',
store: new Ext.data.Store({
autoLoad: true,
fields: ['id', 'title'],
proxy: {
type: 'ajax',
url: 'records.json'
}
})
}
我还没有理解如何使用 REST link 服务器数据和表单字段 api。
我有一些选择字段的表格。我对服务器上的这个特别字段有值。我认为表单可以从存储模型中获取数据(y/n?)。如果这是真的,我有一个问题:如何将现有表单添加到模型中? 所以主要目标 - 从服务器获取值到现有表单的现有选择字段 trought REST API.
这是我现在拥有的: -代理商店:
Ext.define('Foresto.store.RESTstore',{
extend: 'Ext.data.Store',
storeID:'reststore',
proxy: {
type:'rest',
url:'http://localhost:6666/api/form',
reader:{
type: 'json',
root: ''
}
},
autoLoad: true});
-一个来自表格:
Ext.define('Foresto.view.forms.Cutarea', {
extend: 'Ext.form.Panel',
title: 'ForestoL',
header: {
cls: 'header-cls',
},
scrollable: true,
xtype: 'forestoL',
url: 'save-form.php',
items: [{
xtype: 'selectfield',
label: 'Field1',
name: 'name'
},{
xtype: 'selectfield',
label: 'Field2',
name: 'allotment'
}] ...
请帮助! 谢谢, 阿图尔.
请参阅 this fiddle 基本远程组合框。
{
xtype: 'combo',
fieldLabel: 'My Combo',
valueField: 'id',
displayField: 'title',
anchor: '100%',
store: new Ext.data.Store({
autoLoad: true,
fields: ['id', 'title'],
proxy: {
type: 'ajax',
url: 'records.json'
}
})
}