博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
axios
阅读量:6716 次
发布时间:2019-06-25

本文共 531 字,大约阅读时间需要 1 分钟。

const axios = require('axios')const md5 = require('md5')let str = {    from: '',    to: 'en',    yd: 'https://openapi.youdao.com/api',    appKey: '4ac7903d8a0aa4fc',    q: '你好',    salt: new Date().getTime(),    key: 'dsBDw9WHoYtSeW3B0WdSaAHIsexwlzz6',    }let strs = str.appKey + str.q + str.salt + str.keylet sign = md5(strs)console.log(sign)let url = `${str.yd}?q=${str.q}&from=${str.from}&to=${str.to}&appKey=${str.appKey}&salt=${str.salt}&sign=${sign}`axios.post(encodeURI(url)).then(function(a) {    console.log(a.data)})复制代码

转载地址:http://zlrlo.baihongyu.com/

你可能感兴趣的文章
Windows完成端口网络模型
查看>>
CSS Hack整理
查看>>
leetcode 28. Implement strStr()
查看>>
nginx 服务器重启命令,关闭 (转)
查看>>
实用的正则表达式
查看>>
Hibernate中Criteria的完整用法
查看>>
LINUX创建用户的命令
查看>>
Spring MVC 学习总结(一)——MVC概要与环境配置 转载自【张果】博客
查看>>
POJ 2728 二分+最小生成树
查看>>
[LeetCode] Best Time to Buy and Sell Stock IV
查看>>
nuxt 2.0采坑计之 (引入静态文件css)
查看>>
I/O编程软件题(Java语言)
查看>>
时序逻辑、组合逻辑,我不再怕你了
查看>>
(三)mybatis之对Hibernate初了解
查看>>
git 分支( branch ) 的基本使用
查看>>
HDU 4334 Trouble
查看>>
nginx安装与配置
查看>>
Android 命令设置获取、IP地址、网关、dns
查看>>
弹性碰撞 poj 3684
查看>>
查找当前薪水(to_date='9999-01-01')排名第二多的员工编号emp_no、薪水salary、last_name以及first_name,不准使用order by...
查看>>