0

这是来自我的 REST 服务器的 JSON:

[{"name":"REL"},{"name":"RBOW"},{"name":"EMLAWEB"}]

这是 JSON 数据存储的编程创建:

    dojo.addOnLoad(function(){
    var appPrefixStore = new dojox.data.JsonRestStore({target:"http://localhost:9080/AtRest/AtRest/tag/prefix"});`

这是组合框中数据存储的声明式使用:

    <input id="selectPrefixCombo" 
    name="appPrefix" 
    data-dojo-type="dijit.form.ComboxBox"
    data-dojo-props="autocomplete:'false', trim:'true', maxHeight:'200', store:'appPrefixStore'">
 </input>

但是,组合框中无法显示任何内容。是什么赋予了?

我什至尝试过以声明方式使用数据存储:

<div data-dojo-type="dojo.data.JsonRestStore" ...
4

2 回答 2

0

Anyway... here's the working code by using global variable

<script type="text/javascript">
    //global variable container
    var widgets = {};

    require(
        // Set of module identifiers
        [   "dojo", 
            "dojo/parser", 
            "dojo/_base/xhr",
            "dijit/form/ComboBox",  
            "dojo/store/JsonRest", 
        ],
        // Callback function, invoked on dependencies evaluation results        
        function(JsonRestStore) {
            widgets.appPrefixStore = new dojo.store.JsonRest({target:"http://localhost:9080/AtRest/AtRest/tag/prefix"});
        });
</script>

<select id="selectPrefixCombo" name="appPrefix" data-dojo-type="dijit.form.ComboBox"
    data-dojo-props="autocomplete:'false', trim:'true', maxHeight:'200', store:widgets.appPrefixStore">
</select>
于 2012-06-07T13:18:12.967 回答
0

谢谢,显然我可能被我看到的所有教程和示例误导了。构造 JsonRestStore 不足以触发对服务器的请求。我必须添加一个appPrefixStore.fetch()才能使其工作。

于 2012-06-07T08:05:43.913 回答