dashboard
repositories
filestore
activity
search
login
main
/
jfpt-Vue
南昌市物联网技防平台-前端
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
websocket调整
zengh
2021-04-27
d74734fd32b892c4e71dccc0f85db7f3e9d36f18
[jfpt-Vue.git]
/
public
/
map
/
core
/
utils
/
ConfigUtil.js
1
2
3
4
5
6
7
8
9
10
define(["dojo/request"],
function(request) {
return {
loadJson: function(url, successCallback, errorCallback) {
request.get(url, {
handleAs: "json"
}).then(successCallback, errorCallback);
},
};
});