gpt4 book ai didi

javascript - 如何在 EXTJS 中将数据从 mySQL 加载到 JSON

转载 作者:行者123 更新时间:2023-11-30 22:36:42 25 4
gpt4 key购买 nike

我在我的存储文件夹中创建文件,我想将我的数据从 mySQL 加载到 JSon,所以这是我的代码:

Ext.define('DWP3.store.konten.Coba', {
extend: 'Ext.data.Store',
alias: 'store.coba',
uses: [
'Ext.data.Store'
],

initComponent: function(){

var store = Ext.create('Ext.data.Store', {
fields: [
{name: 'periode'},
{name: 'Teknik Informatika S1'},
],
proxy: {
type: 'ajax',
url : 'resources/data/load2.php',
reader: {
type: 'json',
rootProperty: 'view_aktif'
}
},
autoLoad: true
});

}
});

如何从商店加载数据?你能帮我吗。

最佳答案

这样声明对我来说似乎更好:

Ext.define('DWP3.store.konten.Coba', {
extend: 'Ext.data.Store',
alias: 'store.coba',
fields: [
{name: 'periode'},
{name: 'Teknik Informatika S1'},
],
proxy: {
type: 'ajax',
url : 'resources/data/load2.php',
reader: {
type: 'json',
rootProperty: 'view_aktif'
},
autoLoad: true
});

关于javascript - 如何在 EXTJS 中将数据从 mySQL 加载到 JSON,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32346312/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com