0

私はプロジェクトに道場を使用しています。そこで、サーバーへのajaxリクエストがあります。私が提供するURLは有効であり、URLからデータを取得しています。また、リクエストが送信されているかどうか、およびリクエストがどのように応答するかをブラウザで確認しました。しかし、コールバックはまったく実行されません。コードは次のとおりです。

require([
            "dojox/grid/EnhancedGrid",
            "dojo/store/Memory",
            "dojo/store/JsonRest",
            "dojo/store/Cache",
            "dojo/data/ObjectStore",
            "dojo/request",
            // a few other things i require
            "dojo/domReady!"
        ], function(EnhancedGrid, Memory, JsonRest, Cache, ObjectStore, request, query, on, dom, parser, registry, cookie, json, array, button, attr, lang) {
        request.get("<?=  base_url(); ?>c_fremdkosten/get_list",
            {
                handleAs: "json"
            }
        ).then(function(data){
            console.log(data); //is NOT executed...
        });
});

誰かアイデアがありますか?

4

0 に答える 0