1
2
3
4
5
6
7
8
9
10
11
12
13
|
| setInterval("getStoreData()",1000);
| var getStoreData = function () {
| $.ajax({
| url: "http://47.104.67.107:8082//api/Store",
| type: 'GET',
| dataType: 'JSON',
| data: {},
| success: function (data) {
| window.localStorage.setItem('Store3DData',data);
| }
| });
| }
|
|