国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

ES6 換種思路處理數據

jindong / 3127人閱讀

摘要:看完本文,希望可以寫出更加漂亮簡潔函數式的代碼可以用來匯總數據的初始值把一個對象數組變成一個以數組中各個對象的為屬性名,對象本身為屬性值的對象。

Handle javascript data structures with map/reduce

看完本文,希望可以寫出更加漂亮、簡潔、函數式的代碼?

reduce

reduce 可以用來匯總數據

const customer = [
  {id: 1, count: 2},
  {id: 2, count: 89},
  {id: 3, count: 1}
];
const totalCount = customer.reduce((total, item) =>
  total + item.count,
  0 // total 的初始值
);
// now totalCount = 92

把一個對象數組變成一個以數組中各個對象的 id 為屬性名,對象本身為屬性值的對象。haoduoshipin

let products = [
  {
    id: "123",
    name: "蘋果"
  },
  {
    id: "345",
    name: "橘子"
  }
];

const productsById = products.reduce(
  (obj, product) => {
    obj[product.id] = product
    return obj
  },
  {}
);

console.log("result", productsById);
map

map 可以理解為是數組的轉換器,依次對數組中的每個元素做變換進而得到一個新的數組。

const integers = [1, 2, 3, 4, 6, 7];
const twoXIntegers = integers.map(i => i*2);
// twoXIntegers are now [2, 4, 6, 8, 12, 14]
// integers數組并不會受到影響
find?

篩選出數組中的個別元素

const posts = [
  {id: 1, title: "Title 1"},
  {id: 2, title: "Title 2"},
];
// find the title of post whose id is 1
const title = posts.find(p => p.id === 1).title;

唉~ 使用了半年的 es6才發現有這么好用的東西,譯者傻缺還像下面這么寫過呢

const posts = [
  {id: 1, title: "Title 1"},
  {id: 2, title: "Title 2"},
];

const title = posts.filter(item => item.id === 1)[0].title;
filter

篩選出數組中某些符合條件的元素組成新的數組

const integers = [1, 2, 3, 4, 6, 7];
const evenIntegers = integers.filter(i => i % 2 === 0);
// evenIntegers are [2, 4, 6]

請大家自行思考下filterfind的區別

數組concat
const arr1 = [1, 2, 3, 4, 5];
const arr2 = [6, 7, 8, 9, 0];
const arrTarget = [...arr1, ...arr2];
// [1, 2, 3, 4, 5, 6, 7, 8, 9, 0]
對象操作
function operation(query, option = {}) {
    const param = {...query, ...option};
    // ....
    return param;
}
let opt = {startTime: 123455555, endTime: 113345555};
let q = {name: "一步", age: "xxx"};
operation(q, opt);
// {name: "一步", age: "xxx", startTime: 123455555, endTime: 113345555}

對象是引用傳參的,所以函數內部應該盡可能的保證傳入的參數不受到污染。

為對象動態地添加字段
const dynamicKey = "wearsSpectacles";
const user = {name: "Shivek Khurana"};
const updatedUser = {...user, [dynamicKey]: true};
// updatedUser is {name: "Shivek Khurana", wearsSpectacles: true}
將對象轉換為query字符串?
const params = {color: "red", minPrice: 8000, maxPrice: 10000};
const query = "?" + Object.keys(params)
  .map(k =>
    encodeURIComponent(k) + "=" + encodeURIComponent(params[k])
  )
  .join("&")
;
// encodeURIComponent encodes special characters like spaces, hashes
// query is now "color=red&minPrice=8000&maxPrice=10000"
得到對象數組的元素 index
const posts = [
  {id: 13, title: "Title 221"},
  {id: 5, title: "Title 102"},
  {id: 131, title: "Title 18"},
  {id: 55, title: "Title 234"}
];
// to find index of element with id 131
const requiredIndex = posts.map(p => p.id).indexOf(131);

更加優雅的寫法呱呱呱提供:

const posts = [
  {id: 13, title: "Title 221"},
  {id: 5, title: "Title 102"},
  {id: 131, title: "Title 18"},
  {id: 55, title: "Title 234"}
];
const index = posts.findIndex(p => p.id === 131)
刪除對象的某個字段
const user = { name: "Shivek Khurana", age: 23, password: "SantaCl@use" };
const userWithoutPassword = Object.keys(user)
    .filter(key => key !== "password")
    .map(key => ({[key]: user[key]}))
    .reduce((accumulator, current) => ({ ...accumulator, ...current }), {});

這里我認為原作者有點為了函數式編程而函數式了,下面是我的解決方案:

const user = {name: "Shivek Khurana", age: 23, password: "SantaCl@use"};
const newUser = {...user};
delete newUser.password;
// {name: "Shivek Khurana", age: 23}

更現代的寫法YiHzo提供: ?????

const user = {name: "Shivek Khurana", age: 23, password: "SantaCl@use"};
// 利用對象的解構,取出非password的所有字段
const {password, ...newUser} = user

以上代碼片段的共同原則:不改變原數據。希望大家的代碼都可以盡可能的簡潔,可維護?。

【開發環境推薦】Cloud Studio 是基于瀏覽器的集成式開發環境,支持絕大部分編程語言,包括 HTML5、PHP、Python、Java、Ruby、C/C++、.NET 小程序等等,無需下載安裝程序,一鍵切換開發環境。 Cloud Studio提供了完整的 Linux 環境,并且支持自定義域名指向,動態計算資源調整,可以完成各種應用的開發編譯與部署。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/107177.html

相關文章

  • 這一次,我們換種姿勢學習 javascript

    摘要:操作符或調用函數時傳入參數的操作都會導致關聯作用域的賦值操作。此外可以使用和來設置對象及其屬性的不可變性級別。忽視這一點會導致許多問題。使用調用函數時會把新對象的屬性關聯到其他對象。 前言 《你不知道的 javascript》是一個前端學習必讀的系列,讓不求甚解的JavaScript開發者迎難而上,深入語言內部,弄清楚JavaScript每一個零部件的用途。本書介紹了該系列的兩個主題:...

    zone 評論0 收藏0
  • Cookie就擺在那,為什么死活吃不到?

    摘要:查找原因無法獲取到是因為同源策略和標記的原因。在同一個站點下使用屬性是無效的。此外,這個指示也會被用做響應中被忽視的標示。而通過設置為獲得的第三方,將會依舊享受同源策略,因此不能被通過或者從頭部相應請求的腳本等訪問。 作者:codexu _ showImg(https://segmentfault.com/img/remote/1460000020161476); 瀏覽器里明明存在的c...

    shmily 評論0 收藏0
  • 用面向對象的思維方式來設計數據

    摘要:思路上次換工作,面試遇到一道面試題,如下請設計數據庫,用來存放老師學生等人員的信息,盡量滿足以后的擴展。 ————因為懶惰,所以思索 場景 我們有多種類型訂單:實物訂單、特享商戶訂單、核銷訂單、生活繳費訂單、電影票訂單、機票訂單、以及以后會持續新增的未知類型訂單,它們都存放在不同的訂單類型表中 影響 導致有些業務做起來會比較痛苦 比如: 統計當前用戶未付...

    alexnevsky 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<