EExcel 丞燕快速查詢2

EExcel 丞燕快速查詢2
EExcel 丞燕快速查詢2 https://sandk.ffbizs.com/

旗艦 評價



https://www.mobile01.com/topicdetail.php?f=588&t=5469913&p=2#18







崩壞+傳說問我就對了
我崩壞之神
賣過兩個花費超過40萬水晶帳戶全角色2S大畢業全武器大緊繃,現在退休玩兩隻小號


傳說A牌
堅持尋找真裡的玩家也是我
花費超過三個月時間錄影+上傳youtube驗證U11觸控亂跳問題 堪比HTC外包QC

我用過
ZENPHONE 3隻
HTC 5隻
小米2隻
三星6隻
現在用的IPHONE 8 +
以上都買旗艦
主要需求長時間打GAME
會打到機子燒到需要開冷氣和風扇直吹 繼續打的那種
其次聽音樂、FB、看新聞

給你我的評價
HTCM7 神
M8神
M9垃圾
M9+垃圾
E9+垃圾
HTC10 遊戲神+毛病多(幹裡老換完電池觸控斷點,這隻他媽超級燙)
U11超大神+毛病多(超長2年保固螢幕觸控亂跳已解決,和IPHONE8+遊戲玩起來根本一樣 所以給超大神)

三星 I9100 神 刷機後開起威能
note 4 神+毛病多 (大螢幕遊戲神+WIFI
S6 浮誇神 (造型主觀浮誇小啟智哈味,效能神但毛病小多)
S8 浮誇神 (造型主觀浮誇小啟智哈味,效能神但毛病小多)
S9 神神(錢很多可以考慮 效能神毛病小多小卡小延遲)

Zenphone 2 CP小神(剛出玩遊戲夠用,各種浮誇內建APP)
Zenphone 3 遊戲小神+毛病多(螢幕背光+APP各種小問題+組裝品質)
Zenphone 4 遊戲神+毛病多(自家APP好用但毛病多+遊戲神)

紅米note 5
小米5 評價和ASUS旗艦差不多 CP取勝 但毛病以安卓來說比HTC還多

賈伯斯的遺囑 8+ 用到現在覺得和安卓差異極小,而且人會變智障 下次會換回安卓


結論

崩壞三+傳說+照相

IPHONE8+>S9>U11

U11玩遊戲拍照雖然神,但各種毛病 我只能慘讓給三星

起碼三星品質真的穩,沒有HTC毛病這多

Zenphone5 不在同一起跑點 只能場外休息

以上不是浮誇 而是誠心建議

async await Promise.all

async getaaa()
async getbbb()
async getccc()


=======new way=======
async  refreshall(){

  await Promise.all( xxxxxx.map(async (value, index) =>{
    aaa = await getaaa()
  }))

  await Promise.all( xxxxxx.map(async (value, index) =>{
     bbb = await getbbb()

  }))


  await Promise.all( xxxxxx.map(async (value, index) =>{
    ccc = await getccc()
  }))

}

=======old way=======
async  refreshall(){

  await Promise.all( xxxxxx.map(async (value, index) =>{
    aaa = await getaaa()
    bbb = await getbbb()
    ccc = await getccc()

  }))

}


1. map usually return something, here just throw
2. if use foreach(), get error.  Like  foreach is not function, can't async await.

old way  aaa order is good, but bbb ccc order is bad.
new way  all aaa bbb ccc order is ok.

call by value call by reference object array push

Problem: 
array A   
A.push(item) 
item is object  from for or map or foreach....etc

show A  all add item is same.......


Solve:

var txxxxx = []  // xxxx is any word

=====loop start=====
txxxx[index] = item  //index is from for or map or foreach...etc

ot = {
   xxxx: txxxx[index]
}

A.push(ot)
=====loop end=====

vue watch v-for

Very easy things, but need some way to pass this difficult.


Problme is async await   if your problem  is this, now see how to do


1. template or web html

.any input v-model="filter_keywork"

.<p v-for="r in results"> {{r.aaa}} {{r.bbb}} </p>


2. var app   data:{
  filer_keywork: '',
  resuls: [],
}


3. methods:{
  getrows(){
    this.axios or any http get
  },
  async filteredRows(){
    this.results = await this.getrows()
  }
}

4.watch: {
  filter_keywork: function(){
    this.filteredRows()
  }
}



Watch filter_keywork changed to call method this.fileredRows().

This time methods can us async await get back resuls => this.results Then vue render. No async await .... vue sleep.