Node.js API —— util(工具)

2020-12-13 15:02

阅读:406

1 util.format(‘%s:%s‘, ‘foo‘); // ‘foo:%s‘

    如果参数比占位符更多,额外的参数均使用 util.inspect() 转换成字符串,并将得到的字符串使用空格分隔连接起来。

1 util.format(‘%s:%s‘, ‘foo‘, ‘bar‘, ‘baz‘); // ‘foo:bar baz‘

    如果第一个参数不是格式化字符串那么 util.format() 返回一个将所有参数使用空格分隔连接起来的字符串。每个参数使用 util.inspect() 转换成字符串。

1 util.format(1, 2, 3); // ‘1 2 3‘

util.debug(string)


评论


亲,登录后才可以留言!