js进行md5签名函数
根据你的加密自动进行拼接,此处需要注意的是使用的是 encodeURIComponent 函数 和 & 符号的时候必须单独进行拼接,因为 encodeURIComponent 会将 &进行转义
// 引入md5.js
function getSign(d
根据你的加密自动进行拼接,此处需要注意的是使用的是 encodeURIComponent 函数 和 & 符号的时候必须单独进行拼接,因为 encodeURIComponent 会将 &进行转义
// 引入md5.js
function getSign(data) {
if (data == false) {
return '';
} else {
var str = encodeURIComponent('app_act') + '=' + encodeURIComponent(data.app_act) + '&' + encodeURIComponent('app_id') + '=' + encodeURIComponent(data.app_id) + '&' + encodeURIComponent('app_secret') + '=' + encodeURIComponent(data.app_secret);
return hex_md5(str);
}
}
版权声明
本站部分原创文章,部分文章整理自网络。如有转载的文章侵犯了您的版权,请联系站长删除处理。如果您有优质文章,欢迎发稿给我们!联系站长:
愿本站的内容能为您的学习、工作带来绵薄之力。
评论