Node.JSv8的5个新特性:支持string padding与async/await和object参数省略


发布者 ourjs  发布时间 1496650411711
关键字 JS学习  Node.JS 

1. 字符填充: string padding

PadStart 和 PadEnd 函数可向左、右填充字符串(如空格),  还记得 leftpad 事件吗? 现在JS原生支持了。

// String.prototype.padStart(targetLength [, padString])
'hello'.padStart(10); // '     hello'
'hello'.padStart(10, '0'); // '00000hello'
'hello'.padStart(); // 'hello'
'hello'.padStart(6, '123'); // '1hello'
'hello'.padStart(3); // 'hello'
'hello'.padStart(3, '123'); // 'hello';

// String.prototype.padEnd(targetLength [, padString])
'hello'.padEnd(10); // 'hello     '
'hello'.padEnd(10, '0'); // 'hello00000'
'hello'.padEnd(); // 'hello'
'hello'.padEnd(6, '123'); // 'hello1'
'hello'.padEnd(3); // 'hello'
'hello'.padEnd(3, '123'); // 'hello';


2. 函数中允许尾随逗号参数

以前的版本中,函数中是不允许出现空逗号的:

function foo(
  a,
  b,
  c, // this threw a Parse Error before Node 8
) { … }

foo(
  ‘a’,
  ‘b’,
  ‘c’, // this threw a Parse Error before Node 8
);


3. async 函数

在node.js 4.0中,你要通过第三方库和 yield 来避免回调嵌套:

const co = require('co');
const fetch = require('node-fetch');

function * getUser(username) {
  const res = yield fetch(`https://api.github.com/users/${username}`);
  const json = yield res.json();
  return json;
}

function * start() {
  const user = yield getUser('github');
  console.log(user); // prints out info about ‘github’ user on GitHub
}

co(start);

async/await 没有第三方依赖,写法更直观,再也不用写回调嵌套了:

const fetch = require('node-fetch');

async function getUser(username) {
  const res = await fetch(`https://api.github.com/users/${username}`);
  const json = await res.json();
  return json;
}

async function start() {
  const user = await getUser('github');
  console.log(user); // prints out info about ‘github’ user on GitHub
}

start();


4. 模板文本修证 (ES2018)

字符串模板,被修正,因为 \u or \x 非常常见。

function latex(strings) {
  // ...
}

latex`
\document{article}
\usepackage{somepackage}
`
// \document{article} works on previous Node versions
// \usepackage{somepackage} will only work on Node 8 due to ‘\u’ special character


5. 对象参数个数不定(省略)与扩展 (ESNEXT)

数组参数参数不定之前的node版本已经支持了,现在object也支持了:

const foo = { a: 1, b: 2, c: 3 };
const { a, ...rest } = foo;
console.log(rest); // { b: 2, c: 3 }

Object spread inserts the respective object’s key-value pairs into the target object:

const foo = { a: 1, b: 2, c: 3 };
const bar = { d: 4, e: 5 };
const baz = {};

const qux = { ...foo, ...bar, ...baz };
console.log(qux); // { a: 1, b: 2, c: 3, d: 4, e: 5 }


对象扩展可以让你不再使用 extend 来合并对象










 热门文章 - 分享最多
  1. Node.js网页抓取:一个最简单的http请求客户端示例(request client)
  2. Docker改名Moby:急于商业化陷入品牌更名乱象
  3. Java已快过时?斯坦福大学将JavaScript作为计算机科学入门课
  4. Node.JS用Socket实现FTP Server服务器和Client客户端
  5. "永恒之蓝"比特币勒索病毒(WannaCry)的攻击原理
  6. Node.JS通过原型和类继承EventEmitter,实现收发事件的几种方法
  7. Node.JS更改Windows注册表regedit的几种方法
  8. Phantom.js维护者Slobodin退出,著名自动化测试与智能爬虫框架前景不明
  9. Debian下设置Linux Shell脚本开机自动启动Node.JS进程
  10. 用纯Node.JS弹出Windows系统消息提示框(MessageBox)

 相关阅读
  1. node.js中fs.stat里的atime,mtime,ctime,birthtime在debian下的更新规则与区别
  2. decodeURIComponent有个BUG,当浏览器请求地址含%+数字时,会解析错误
  3. NodeJS的DNS使用:域名解析,MX记录查询,SPF反垃圾邮件测试
  4. Node.JS如何调用Chrome打开浏览器链接地址
  5. 用纯Node.JS弹出Windows系统消息提示框(MessageBox)
  6. 利用Windows注册表将你的Node.JS程序添加到右健菜单直接运行
  7. JavaScript中splice与slice的区别、数组的复制以及在指定位置添加删除元素
  8. Node.JS中如何判断递归嵌套的所有回调函数已经执行完毕,以读取目录下所有文件为例:计数比Promise方式快将近一倍
  9. Node.js网页抓取:一个最简单的http请求客户端示例(request client)
  10. JavaScrip字符串模板表达式中的反引号怎么打?

  开源的 OurJS
OurJS开源博客已经迁移到 OnceOA 平台。

  关注我们
扫一扫即可关注我们:
OnceJS

OnceOA