gpt4 book ai didi

jquery - 我可以将 Get 与 EXTJS 一起使用吗

转载 作者:行者123 更新时间:2023-12-01 08:17:20 25 4
gpt4 key购买 nike

在使用 JQuery 多年后,我正在学习 ExtJS。我喜欢 JQuery 的易用性,但我在尝试使用 ExtJs 做类似的事情时遇到困难。目前我正在尝试获取一个 PHP 页面,同时向它传递一个参数。在重新运行时,我需要用数据填充选择框。使用 JQuery,调用将如下所示:

$.get("test.php?id=abc", function(data){
$('#result').html(data);
});

我可以用 ExtJS 做这样的事情吗?

最佳答案

是的,您应该能够使用Ext.Ajax.request()并写下类似的内容:

Ext.Ajax.request({
url: "test.php?id=abc",
method: "GET",
success: function(response) {
Ext.get("result").update(response.responseText);
}
});

关于jquery - 我可以将 Get 与 EXTJS 一起使用吗,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9704687/

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