1

我正在尝试从 dojo/Store/jsonRest (v1.8) 的 dojotoolkit.org 参考指南从此处复制 results.total 示例。

我的 jsonRest 存储目标是一个 php 页面,正如我在此处了解的那样,我在 firebug 中添加 console.debug(data); 了显示数据以我认为应该的方式从 php 返回的内容:(抱歉试图在这里显示图片,但我不能)

问题是我不知道如何访问数据? results.total.then什么都不返回,我认为该函数甚至不会运行。

我试过store.get了,这给了我 php url 的 404 错误。我尝试像这样转换商店:newStore = ObjectStore({objectStore: store});然后在 newStore 上运行查询,这没有错误,但也没有结果。

如果我尝试使用“foo=bar”语法查询商店,我也会收到 404 错误,在我的情况下store.query ("ADDNUM='200'") ,但如果我使用该store.query ({ADDNUM:"200"})语法则没有错误。

我的最终目标是让结果显示在 dojo 过滤选择中,但现在我将满足于能够得到它们,即使只是 console.log(result)。
非常感谢任何人可以提供的任何帮助!

require([
  "dojo/store/JsonRest", 
  "dojo/data/ObjectStore", 
  "dojo/store/Memory"
  ], function(JsonRest, Memory, ObjectStore){
    var store = new JsonRest({
    target: "scripts/AddressNumTest.php"
    });

var self = this;
var results = store.query({ADDNUM:"200"}).then(function(data){
  console.debug(data);  //results from this look okay to me
  results.total.then(function(total){
     console.log("Never gets here??");
     console.log("total results: ", total);
     console.log("go on and use data ", data, " with this ", self);
     });
  });

//store.query("ADDNUM='200'")  //this returns 404 error

//below gives 404 error           
//var results2 = store.get({ADDNUM:"200"}).then(function(newdata){
//console.log("from get: " + newdata);            
//});

});

Result when no Error but also no success in accessing data in store: GET ../scripts/AddressNumTest.php?ADDNUM=200 200 OK -- RESPONSE: {identifier: 'OBJECTID', label: 'ADDNUM', 'items':[{"ADDNUM":"136","OBJECTID":"307"},{"ADDNUM":"150","OBJECTID":"308"},{"ADDNUM":"200","OBJECTID":"8494"},{"ADDNUM":"210","OBJECTID":"8495"},{"ADDNUM":"220","OBJECTID":"2950"}]}

404 Error when using store.get: GET .../scripts/AddressNumTest.php%5Bobject%20Object%5D 404 Not Found RequestError: Unable to load scripts/AddressNumTest.php[object Object] status: 404

404 Error when I use "ADDNUM='200'" syntax: GET .../scripts/AddressNumTest.phpADDNUM=%27200%27 404 Not Found RequestError: Unable to load scripts/AddressNumTest.phpADDNUM='200' status: 404

4

1 回答 1

1

我不知道结果是否在关闭中可用,但我认为您不需要它。回调正在传入data,这在您的 中看起来是正确的console.debug(data),所以让我建议这段代码。

var results = store.query({ADDNUM:"200"}).then(function(data){
  console.debug(data);  //results from this look okay to me
  console.log("You will get here!  :)");
  // I do not know what data looks like so this may or may not work.
  console.log("total results: ", data.total);
  console.log("go on and use data ", data, " with this ", self);
});
于 2013-03-30T03:15:01.650 回答