1. 程式人生 > >php搜索附近人及顯示男生女生分開

php搜索附近人及顯示男生女生分開

[] 附近 people entry toggle request ima i++ als

// 滾動切換標簽樣式 switchTab: function (e) { this.setData({ currentTab: e.detail.current }); this.checkCor(); 0 == e.detail.current ? this.setData({ people: this.data.peopless }) : 1 == e.detail.current ? this.setData({ people: this.data.people1 }) : this.setData({ people: this.data.people2 }) }, // tab選項卡切換 tabtoggle(e) { var cur = e.target.dataset.current; var currentTab = this.data.currentTab if (currentTab == cur) { return false; } else { this.setData({ currentTab: cur }) 0 == cur ? this.setData({ people: this.data.peopless }) : 1 == cur ? this.setData({ people: this.data.people1 }) : this.setData({ people: this.data.people2 }) } }, getFujin:function(la1, lo1){ var that = this; app.util.request({ ‘url‘: ‘entry/wxapp/Fujin‘, data:{ lat:la1,//自己的經緯度 lo:lo1 }, success: function (res) { console.log(res.data.data); var people = res.data.data; var people1 = [], people2 = [], len = people.length; // 1 男 2 女 for (var j = 0; j < people.length; j++) { that.distance(la1, lo1, people[j].latitude, people[j].longitude) people[j].juli = that.data.s.toFixed(2); } for (var i = 0; i < len;i++){ if (people[i].x_sex == "0"){ people1.push(people[i]); }else{ people2.push(people[i]); } } console.log(people1); console.log(people2); that.setData({ people: res.data.data, peopless: res.data.data, people1: people1, people2: people2, }) }, fail: function (err) { console.log(err) }, }); },技術分享圖片

php搜索附近人及顯示男生女生分開