想要将 html 回显给 extjs 阅读器而不是 json?
我熟悉如何使用数据存储处理 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可能不想使用商店来更新面板内容。有几种直接的方法可以更新面板主体内容。 1. 在配置中使用autoLoad。 2. 直接设置 html,可能来自其他 ajax 调用。 3. 使用 Ext.Panel 加载方法让 Ext 进行 ajax 调用并使用响应更新面板主体。
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.