4

外部の XML データソースで Kendo UI ComboBox を使用しています。DataSource コードは次のとおりです。

try
    {
        var csDataSrc = new kendo.data.DataSource(
        {
            transport:
        {
            read: "Data/StateList.xml",
            dataType: "xml",
            create: { cache: true }
        },
        schema:
        {
            type: "xml",
            data: "/States/State",
            model:
            {
                fields:
                {
                    id: "id/text()",
                    name: "name/text()"
                }
            }
        }
    });
    csDataSrc.read();
}
catch (err)
{
    log.error(err.message);
}

これにより、データ ソースが作成されます。剣道コンボボックスを作成するコードは次のとおりです。

$("#stateList").kendoComboBox(
{
    index: 0,
    placeholder: "Begin typing Coverage State...",
    dataTextField: "name",
    dataValueField: "id",
    filter: "contains",
    dataSource: csDataSrc,
    text: $("#hdnStateName").val(),
    value: $("#hdnStateKey").val(),
    change: function(e)
    {
        $("#hdnStateKey").val(this.value());
        $("#hdnStateName").val(this.text());
    }
});

これは非常にうまく機能しますが、実際のリストのデータは膨大であり、次のような方法でローカル ストレージに保存したいと考えています。次に、サーバー側のxmlを常に構築して読み取るのではなく、ページが読み込まれると、次のようになります。

var csDataSrc = localStorage.getItem("state_key");
if(csDataSrc === null)
{
    // create the data source with the above code
    // and store it in localStorage.
}

じゃあここに縛って…

...kendoComboBox(
{
    ...,
    .dataSource: csDataSrc,
    ...
});

データ ソースを正常に作成しました。localStorage に正しく保存されているようですが、ページを離れて戻ってくると、データ ソースは常に null になります。Chrome 開発者ツールの [リソース] タブを使用して表示できますが、コンボ ボックスに正しくバインドされません。何か助けがあれば、またはこれを明確にするために何か詳しく説明する必要がある場合はお知らせください

ありがとうございます

4

1 に答える 1

10

これを実現するには、カスタムの read メソッド ( link ) を使用できます。

transport: {
    read: function(operation) {
        var cashedData = localStorage.getItem("moviesData");

        if(cashedData != null || cashedData != undefined) {
            //if local data exists load from it
            operation.success(JSON.parse(cashedData));
        } else {
            $.ajax({ //using jsfiddle's echo service to simulate remote data loading
                url: '/echo/json/',
                type: "POST",
                dataType: "json",
                data: {
                    json: JSON.stringify(data)
                },
                success: function(response) {
                    //store response
                    localStorage.setItem("moviesData", JSON.stringify(response));
                    //pass the pass response to the DataSource
                    operation.success(response);
                }
            });
        }                 
    }
}

これが実際の例です:http://jsfiddle.net/LnTe7/12/

于 2012-12-06T22:24:03.483 に答える