作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我还不明白如何使用 REST api 链接服务器数据和表单字段。
我有一些选择字段的表格。我对服务器上的这个特别字段有值。我认为表单可以从存储模型中获取数据(是/否?)。如果这是真的,我有一个问题:如何将现有表单添加到模型中?所以主要目标 - 通过 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'
}
})
}
关于javascript - 如何使 EXT JS 模型和代理存储工作? (请帮忙!),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52985070/
_R = [0] * 5 R = [_R] * 4 num_user = 0 num_item = 0 for i in range(8): s = input().split() f
chrome.tabs.onUpdated.addListener(checkForValidUrl); function checkForValidUrl(tabId, changeInfo, ta
我是一名优秀的程序员,十分优秀!