0
我這裏有2陣列的安排給出另一個數組屬性數組中的JavaScript
1陣列的主要數據,並通過 財產2個數組它必須是第一個陣列數據訂單的基礎秩序。
第二陣列樣品:
var order_basis = [
{ tag:'vip' }, { tag:'home' } { tag:'work' }
]
第一陣列數據
var main_data = [
{ tag:'work',name:'sample',contact:'0987654',email:'[email protected]' },
{ tag:'home',name:'sample',contact:'0987654',email:'[email protected]' },
{ tag:'home',name:'sample',contact:'0987654',email:'[email protected]' },
{ tag:'work',name:'sample',contact:'0987654',email:'[email protected]' },
{ tag:'vip',name:'sample',contact:'0987654',email:'[email protected]' },
]
期望輸出是第二陣列標記順序它必須是
基..
ReOrder(main_data ,order_basis){
//main code
return
}
結果是
tag:'vip' name:'sample' contact:'0987654' email:'[email protected]'
tag:'home' name:'sample' contact:'0987654' email:'[email protected]'
tag:'home' name:'sample' contact:'0987654' email:'[email protected]'
tag:'work' name:'sample' contact:'0987654' email:'[email protected]'
tag:'work' name:'sample' contact:'0987654' email:'[email protected]'
謝謝你幫助隊友! ..