встраивание карты dhis2 в веб-приложение javascript

#javascript #dhis-2

Вопрос:

Я пытаюсь встроить карту dhis2 в свое веб-приложение, но я столкнулся с проблемой, в которой говорится, что DHIS не определен. Пожалуйста, кто-нибудь может помочь мне решить эту проблему? Вот код:

 var base = "server.com";  $(document).ready(function(){  Ext.onReady( function() {  Ext.Ajax.request({  url: base   "dhis-web-commons/security/login.action",  method: "POST",  params: { j_username: "my_username", j_password: "my_password" },  headers:{'Content-Type': 'application/json'},  success: setLinks,  failure: function(response) {  console.log("logged in failed, try again later");  }  });  });  }) function setLinks(){  DHIS.getMap({ url: base, el: "map1", id: "map_id" }); }```