JsonStore - 使用静态 URL 加载单个记录?
所有,
我有一个 JsonStore 支持我的 extjs 应用程序中的表单面板。我想让 jsonStore 根据 id 值加载单个记录,但还没有找到一个好的方法来做到这一点,并且仍然保持 url 的安静。
我的第一次尝试是向 jsonstore load() 方法添加一个参数,其中包含 id。这只将 id 添加为请求参数,而不附加到 url:
http://my-app/users/?id=123
而不是我想要的:
http://my-app/users/123
有人可以帮我解决这个问题吗?
All,
I have a JsonStore backing a form panel in my extjs app. I want to have the jsonStore load a single record based on an id value, but haven't found a good way to do that yet, and still keep the url restful.
My first attempt was to add a param to the jsonstore load() method with the id in it. That only adds the id as a request param, not attached to the url:
http://my-app/users/?id=123
instead of what i want:
http://my-app/users/123
Can someone help me out with this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以手动构造存储区用于查询数据的 URL(通过它为 URL 创建的隐式
HttpProxy
)。所以你的加载函数看起来像:You can manually construct the URL that the store uses to query for data (via the implicit
HttpProxy
it creates for the URL). So your loading function would look like: