我正在使用dojo 1.6,我想创建一个连接到网格的商店;但是,在dojo 1.6中只存在两种使用ItemFileWriteStore和存储内存的方式,这两种方式最好吗?
我正在使用spring 2.5作为控制器。
答案 0 :(得分:2)
对此并不一定是“正确”的答案,但这里有一些事情需要考虑。
dojo/store
API旨在成为下一步,取代dojo/data
。因此,从最佳/现代实践的角度推荐dojo/store
。
但是,假设您正在讨论dojox/grid
,该组件只知道如何使用dojo/data
商店。这有两个选择:
dojo/data/ItemFileWriteStore
dojo/store/Memory
包裹在dojo/data/ObjectStore
中(dojo/store
包含dojo/data
API,以便旧商店的消费者可以使用它。)值得考虑的另一件事是dojo/store/Memory
不支持直接从网址中提取数据,而dojo/data/ItemFileWriteStore
则支持。如果您打算从其他网址加载数据,您仍然可以使用dojo/store/Memory
,但您必须先自己XHR数据。
答案 1 :(得分:0)
主要是感谢xhr的参数
var xhrArgsSolEnv = {
url : "BandejaDrawback.htm?action=conSolPrelim",
handleAs : "json"
};
var xhrArgsSolEnv = {
url : "BandejaDrawback.htm?action=conSolPrelim",
handleAs : "json"
};
then i invoke the function and populate the grid
var cargarSolicEnv = dojo.xhrGet(xhrArgsSolEnv);
var xhrArgsSolEnv = {
url : "BandejaDrawback.htm?action=conSolPrelim",
handleAs : "json"
};
function js_solicitudEnv(data){
var mydata = new dojo.store.Memory({data : data});
var store = new dojo.data.ObjectStore({objectStore: mydata});
var layoutSolEnv = [{ name : "Orden", field : "orden",width : "10%",styles: "text-align: center;" },
{ name : "Solicitud", field : "numSolicitud",width :"15%" , styles: "text-align: center;"
,formatter: function(value){return "<a href='#'>"+value+"</a>";}},
{ name : "Fecha de Registro" ,field: "fecRegistro", width :"25%",styles: "text-align: center;"},
{ name : "Monto", field: "mtoSolicitado", width :"20%",styles: "text-align: center;"},
{ name : "Estado", field: "estado", width :"30%",styles: "text-align: center;"}];
var gridSolicEnv = new dojox.grid.DataGrid({
store : store,
structure : layoutSolEnv,
style : "width : 800px; height : 150px"
},"gridSolicEnv");
gridSolicEnv.startup();
var btnNuevaSol = new dijit.form.Button({
showlabel : true,
label : "Nueva Solicitud",
onClick : function(){
window.location.href = "BandejaDrawback.htm?action=valAccRegistrodeSolicitud";
}
},"btnNuevaSol");
if(data.totalCount >=5){
btnNuevaSol.set("disabled",true);
}
}