Node JS是否具有类似于python的类似函数

时间:2018-04-06 01:24:34

标签: node.js

对于Pandas,我想将数据帧系列中的每个数字乘以2,我可以写出类似

的内容
f = lambda x: x*2
df.col.apply(f)

使用Node,我想要对数组中的每个url进行编码。是否有类似的功能。我想知道以下是否有效:

array.map(encodeURIComponent)

或者,我是否需要执行以下操作:

const encodeUrls = (url)=>{return encodeURIComponent(url)}

1 个答案:

答案 0 :(得分:2)

map将完成这项工作。

const urls = ['https://w3schools.com/my test.asp?name=ståle&car=saab', 'http://www.example.org/a file with spaces.html'];

console.log(urls.map(encodeURI))

您可以在此处了解encodeURIencodeURIComponent之间的区别https://stackoverflow.com/a/3608791/4796844