codigo postal:从Correos de Chile获取邮政编码 源码
邮编 从智利Correos获取邮政编码 安装 npm i -S codigo-postal 使用 const codigoPostal = require ( 'codigo-postal' ) const data = { address : 'avenida siempreviva' , number : 742 , commune : 'springfield' } codigoPostal ( data ) . then ( console . log ) 结果: { zip : XXXXX , // a number address : XXXXX , // a string number : XXXXX , // a string commune : XXXXX , // a string } 执照
用户评论