将数据发布到另一个页面 ExtJs

发布于 2024-11-29 23:21:19 字数 668 浏览 1 评论 0原文

我正在尝试使用 POST 请求将数组发布到特定页面,目标页面生成一个 csv 并将我发送回流,现在我正在使用 ExtJs Ajax 类,但这不会像我需要的那样工作要发出普通的 HTTP 请求而不是 ajax,我当前的代码如下:

Ext.extend(Players.panel.Home,MODx.Panel,{
    exportSubscribers: function(btn,e) {
            MODx.Ajax.request({
                url: Players.config.connectorUrl 
                ,params: {
                    action: 'mgr/player/getSubscribers'
                }

            });
        }
});

exportSubscribers 函数是从普通的 ExtJs 按钮执行的

{ xtype: 'button'
  ,text: 'Export Subscribers'
  ,preventRender: true
  ,handler: this.exportSubscribers
    }

我应该使用什么类将其转换为普通请求?

谢谢。

I'm trying to post an array using a POST request to a specific page, the target page generates a csv and send me back the stream, right now i'm doing using ExtJs Ajax class, but that won't work as i need to make a normal HTTP request not ajax, my current code is as follows:

Ext.extend(Players.panel.Home,MODx.Panel,{
    exportSubscribers: function(btn,e) {
            MODx.Ajax.request({
                url: Players.config.connectorUrl 
                ,params: {
                    action: 'mgr/player/getSubscribers'
                }

            });
        }
});

The exportSubscribers function is executed from a normal ExtJs button

{ xtype: 'button'
  ,text: 'Export Subscribers'
  ,preventRender: true
  ,handler: this.exportSubscribers
    }

What class should i use to turn this into a normal request?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌上青苔 2024-12-06 23:21:19

没有类可以执行正常请求。我知道完成文件下载的两种方法:

  • 在页面中使用隐藏表单,替换字段值并从 ExtJS 按钮处理程序调用表单的 .sumbit 方法来执行您想要的 POST 请求。
  • 如果您可以使用 GET 请求使服务器返回文件,请将您的按钮替换为 HTTP 锚点:Download CSV'

There isn't a class to do a normal request. I known two ways to accomplish a file download:

  • Use a hidden form in the page, replace the field values and invoke the form's .sumbit method from ExtJS button handler to do the POST request you want.
  • Replace your button by an HTTP anchor if you can use a GET request to make the server return the file: <a href="url?params" title="Download CSV">Download CSV</a>'
烟花肆意 2024-12-06 23:21:19

您最好向服务器发出本地请求,然后在服务器端代码中向 CSV 源发出 cURL 请求。这样,您就可以创建一个非 XMLHttpRequest 方法来获取数据。

You'd be better off making a local request to your server, and then in your server-side code make a cURL request to the CSV source. That way, you can make a non XMLHttpRequest method to get your data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文