同一個接口裏的數據,多處用小方法
阿新 • • 發佈:2018-07-27
== 後臺 tor api htm storage fun spa img
1、有時獲取一個後臺接口,頁面展示會多處用到,不用多次調用同一個接口,可以調用一次,把頁面調用這個接口的數據,一下全展示出來;
如例:
$("#bootServerList"), $("#designateServerList")兩處都要用,可以仿照使用
apiGet(url,function (data) { if(data.status==0){ var html = ‘<ul class="bootServerList">‘ var options = "" data.content.forEach(function (data) { html += ‘<li onclick="getGroupList(this,\‘‘+data.uuid+‘\‘)">‘ + ‘<div class="title">‘+ ‘<img src="images/sanjaio.png">‘+ ‘<img src="images/server0.png">‘+ ‘<span>‘+data.name+‘</span>‘+ ‘<span>(</span>‘+ ‘<span id="onlineComputer">100</span>‘+ ‘<span>/</span>‘+ ‘<span id="sumComputer">1000</span>‘+ ‘<span>)</span>‘+ ‘</div>‘ + ‘<div id="‘+data.uuid+‘"></div>‘ + ‘</li>‘; options+= ‘<option value="‘+data.uuid+‘">‘+data.name+‘</option>‘ }) html += ‘</ul>‘; $("#bootServerList").html("").html(html) $("#designateServerList").html("").html(options) // console.log(url+‘getBootServerList?token=‘+localStorage.getItem("token"),100)}else{ console.log("錯誤"); }
同一個接口裏的數據,多處用小方法