This question is about a proper architecture using JSP as a controller for ExtJS.
我对服务器方面的发展来说是相当新的,但我很熟悉ExtJS 4,并更好地阅读Java和Kum。
我正试图设立一个共同项目控制员,以write/em>。 The data from Store in ExtJS. 我有MSSQL数据库和Tomcat在服务器上运行。
I successfully created a JSP (sqlData.jsp) that reads from the database and returns JSON data. I pass a query name to this JSP, it then looks up what the query is from a "query" table (columns: [query_id],[query_name],[query]
). It then runs the query and returns the data in a JSON format - this is working fine to get data into ExtJS from a database.
为了利用这一备份结构,我通常会把库存混为一谈:
var store = Ext.create( Ext.data.Store , {
model: aModel ,
proxy: {
type: ajax ,
url: sqlData.jsp?queryName=aQueryName ,
reader: json
},
autoLoad: true
});
更有甚者,我需要这一数字,以便也能够处理一个<条码>的书店。 也就是说,共同财产调查组需要收到一份特别名册申请,然后根据一名个人资料进行更新(ExtJS发送了作为GET的读申请,并填写了store.save(<><>>>/code>等方法。
我的计划是,在 Java增加一些内容,以承认这是否是《太平洋行动计划》或《北美自由贸易协定》的要求。 之后,如果是一份POST申请,我将把它送到联合调查组内不同的 Java方法,将JSON捆绑起来,并写到数据库。
当然,我必须改变我的“频率”表,以备有与同一查询/格式(即:[query_id]、[query_name]、[elect_query]、[update_query]
有关的更新/插入说明栏。
Does this backend implementation make any sense?
任何其他人都利用JP和ExtJS实现这一顺利?
I noticed that there is an api
config option I can set in my proxy to specify different URLs for the different operations (READ, WRITE, DELETE, etc). Should I make a separate JSP and direct all write requests using this config instead?
添加<条码>作者:json config on the Alain so that it parses before 位置? 我表示,我不得不在联合人民党中加以仿效,这样我才认为我应该这样做。
任何要点都将受到高度赞赏。