$
.ajax({
type
: "GEt",
url
: "http://www.bestqingshan.top/movie/citys.php",
dataType
: "json",
success
: function (data
) {
var citys
= data
.citys
var citylist
= {}
citys
.forEach(obj
=> {
if (citylist
[obj
.city_pre
.toUpperCase()]) {
citylist
[obj
.city_pre
.toUpperCase()].push(obj
.city_name
);
} else {
citylist
[obj
.city_pre
.toUpperCase()] = [];
citylist
[obj
.city_pre
.toUpperCase()].push(obj
.city_name
);
}
});
var arr
= Object
.keys(citylist
).sort();
_this
.citypres
=arr
;
var newobj
={};
for (var i
= 0; i
< arr
.length
; i
++) {
newobj
[arr
[i
]] = citylist
[arr
[i
]];
}
_this
.city
= newobj
;
}
});
转载请注明原文地址: https://mac.8miu.com/read-491831.html