无法在 ExtJs 中发送参数 Ajax
Can't Send Parameter Ajax in ExtJs
我在 View Extjs 中有代码。这是代码:
var storeTree = Ext.create('Ext.data.TreeStore', {
proxy: {
type: 'ajax',
method: 'POST',
url: 'data/newoss_get_paket.php',
params: { nopstn:"02318330549",
num:"tester"
}
}
});
我在newoss_get_paket.php中调用它:
$pstn = $_POST['nopstn'];
$number= $_POST['num'];
但结果为空。参数无法发送到 php 文件。我有什么解决方案吗?
使用 extraParams config 而不是 params
。代理上没有 params
配置。
我在 View Extjs 中有代码。这是代码:
var storeTree = Ext.create('Ext.data.TreeStore', {
proxy: {
type: 'ajax',
method: 'POST',
url: 'data/newoss_get_paket.php',
params: { nopstn:"02318330549",
num:"tester"
}
}
});
我在newoss_get_paket.php中调用它:
$pstn = $_POST['nopstn'];
$number= $_POST['num'];
但结果为空。参数无法发送到 php 文件。我有什么解决方案吗?
使用 extraParams config 而不是 params
。代理上没有 params
配置。