想要将 html 回显给 extjs 阅读器而不是 json?

发布于 2024-12-04 16:37:00 字数 349 浏览 0 评论 0原文

我熟悉如何使用数据存储处理 json 回显数据:

new Ext.data.Store({
        model: "VehicleInfo",
        proxy: {
            type: "ajax",
            url : "vehicleinfo.php",
            reader: {
                    type: "json"
            }
        },
        });     

但是如何配置阅读器以使其接受 html 响应?我计划在面板中回显整个 html 响应。

谢谢。

I am familiar with how to process json echoed data using datastores:

new Ext.data.Store({
        model: "VehicleInfo",
        proxy: {
            type: "ajax",
            url : "vehicleinfo.php",
            reader: {
                    type: "json"
            }
        },
        });     

But how do I configure the reader so that it accepts a html response? I plan to echo out the entire html response in a panel.

Thanks.

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

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

发布评论

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

评论(1

最美的太阳 2024-12-11 16:37:00

您可能不想使用商店来更新面板内容。有几种直接的方法可以更新面板主体内容。 1. 在配置中使用autoLoad。 2. 直接设置 html,可能来自其他 ajax 调用。 3. 使用 Ext.Panel 加载方法让 Ext 进行 ajax 调用并使用响应更新面板主体。

  panel = new Ext.Panel({
    renderTo: Ext.getBody(),
    width:450,
    frame:true,
    defaults:{autoHeight: true},
    // use autoLoad to have content created when the panel first renders
    autoLoad: 'vehicleinfo.php'
  });

  // use one or the other of the two below

  // set html directly
  panel.update('Examples of <strong>direct html<strong>');

  // set html by having Ext do an Ajax call to get panel content
  panel.load('vehicleinfo.php');

You may not want to use a store to update the panel contents. There are a few direct ways to update a panel body content. 1. Use the autoLoad in the config. 2. set html directly, possibly from some other ajax call. 3. use the Ext.Panel load method to have Ext make an ajax call and update the panel body with the response.

  panel = new Ext.Panel({
    renderTo: Ext.getBody(),
    width:450,
    frame:true,
    defaults:{autoHeight: true},
    // use autoLoad to have content created when the panel first renders
    autoLoad: 'vehicleinfo.php'
  });

  // use one or the other of the two below

  // set html directly
  panel.update('Examples of <strong>direct html<strong>');

  // set html by having Ext do an Ajax call to get panel content
  panel.load('vehicleinfo.php');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文