开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

用微信号发送消息登录论坛

新人指南 邀请好友注册 - 我关注人的新帖 教你赚取精币 - 每日签到


求职/招聘- 论坛接单- 开发者大厅

论坛版规 总版规 - 建议/投诉 - 应聘版主 - 精华帖总集 积分说明 - 禁言标准 - 有奖举报

查看: 933|回复: 7
收起左侧

[完成] 求大神改写个循环JS 用易语言调用

 关闭 [复制链接]
结帖率:86% (6/7)
发表于 2020-6-15 22:53:39 | 显示全部楼层 |阅读模式   湖南省娄底市
20精币
function o(e) {
    var t = "",
    a = uni.getStorageSync("userInfo");
    a && (t = a.token),
    t && "undefined" !== t && (e || (e = {}), e["token"] = t, e["appkey"] = "30fdfa349267f2c78c7e268855ee4aa9", e["timestamp"] = Math.round(new Date / 1e3) + 100, e["format"] = "json", e["sign"] = r(Object.assign(e)))
}
function r(e) {
    for (var t = Object.keys(e).sort(), a = "30fdfa349267f2c78c7e268855ee4aa9", n = ["undefined", "object", "function"], r = 0, o = t.length; r < o; r++) if ("sign" !== t[r]) {
        var l = t[r];
        e[l] && -1 === n.indexOf(typeof e[l]) && (a += l + e[l])
    }
    return a += "30fdfa349267f2c78c7e268855ee4aa9"
}

传入参数:  {"cid":62519,"t":1,"token":"e7b98fdc73884d169b15b455b0c5eb48","appkey":"16534887809","timestamp":1592151233,"format":"json","sign":"2d0ddb4753091c2653d0677e*F85ea0"}

响应结果   “30fdfa349267f2c78c7e268855ee4aa9appkey” + appkey + “cid” + cid + “formatjsont1timestamp” + timestamp + “token” + token + “30fdfa349267f2c78c7e268855ee4aa9”

响应结果   “30fdfa349267f2c78c7e268855ee4aa9appkey16534887809cid62519formatjsont1timestamp1592151233tokene7b98fdc73884d169b15b455b0c5eb4830fdfa349267f2c78c7e268855ee4aa9”

最佳答案

查看完整内容

开头加上以上 然后调用 即可

结帖率:100% (3/3)
发表于 2020-6-15 22:53:40 | 显示全部楼层   广东省揭阳市
  1. if (!Object.keys) {
  2.     Object.keys = (function() {
  3.         var hasOwnProperty = Object.prototype.hasOwnProperty,
  4.             hasDontEnumBug = !({
  5.                 toString: null
  6.             }).propertyIsEnumerable('toString'),
  7.             dontEnums = [
  8.                 'toString',
  9.                 'toLocaleString',
  10.                 'valueOf',
  11.                 'hasOwnProperty',
  12.                 'isPrototypeOf',
  13.                 'propertyIsEnumerable',
  14.                 'constructor'
  15.             ],
  16.             dontEnumsLength = dontEnums.length;

  17.         return function(obj) {
  18.             if (typeof obj !== 'object' && typeof obj !== 'function' || obj === null) throw new TypeError('Object.keys called on non-object');

  19.             var result = [];

  20.             for (var prop in obj) {
  21.                 if (hasOwnProperty.call(obj, prop)) result.push(prop);
  22.             }

  23.             if (hasDontEnumBug) {
  24.                 for (var i = 0; i < dontEnumsLength; i++) {
  25.                     if (hasOwnProperty.call(obj, dontEnums[i])) result.push(dontEnums[i]);
  26.                 }
  27.             }
  28.             return result;
  29.         }
  30.     })()
  31. };
  32. if (!Array.prototype.indexOf) {
  33.     Array.prototype.indexOf = function(searchElement, fromIndex) {

  34.         var k;

  35.         // 1. Let O be the result of calling ToObject passing
  36.         //    the this value as the argument.
  37.         if (this == null) {
  38.             throw new TypeError('"this" is null or not defined');
  39.         }

  40.         var O = Object(this);

  41.         // 2. Let lenValue be the result of calling the Get
  42.         //    internal method of O with the argument "length".
  43.         // 3. Let len be ToUint32(lenValue).
  44.         var len = O.length >>> 0;

  45.         // 4. If len is 0, return -1.
  46.         if (len === 0) {
  47.             return -1;
  48.         }

  49.         // 5. If argument fromIndex was passed let n be
  50.         //    ToInteger(fromIndex); else let n be 0.
  51.         var n = +fromIndex || 0;

  52.         if (Math.abs(n) === Infinity) {
  53.             n = 0;
  54.         }

  55.         // 6. If n >= len, return -1.
  56.         if (n >= len) {
  57.             return -1;
  58.         }

  59.         // 7. If n >= 0, then Let k be n.
  60.         // 8. Else, n<0, Let k be len - abs(n).
  61.         //    If k is less than 0, then let k be 0.
  62.         k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);

  63.         // 9. Repeat, while k < len
  64.         while (k < len) {
  65.             // a. Let Pk be ToString(k).
  66.             //   This is implicit for LHS operands of the in operator
  67.             // b. Let kPresent be the result of calling the
  68.             //    HasProperty internal method of O with argument Pk.
  69.             //   This step can be combined with c
  70.             // c. If kPresent is true, then
  71.             //    i.  Let elementK be the result of calling the Get
  72.             //        internal method of O with the argument ToString(k).
  73.             //   ii.  Let same be the result of applying the
  74.             //        Strict Equality Comparison Algorithm to
  75.             //        searchElement and elementK.
  76.             //  iii.  If same is true, return k.
  77.             if (k in O && O[k] === searchElement) {
  78.                 return k;
  79.             }
  80.             k++;
  81.         }
  82.         return -1;
  83.     };
  84. }
复制代码

开头加上以上
然后调用
  1. (r({"cid":62519,"t":1,"token":"e7b98fdc73884d169b15b455b0c5eb48","appkey":"16534887809","timestamp":1592151233,"format":"json","sign":"2d0ddb4753091c2653d0677e1235ea0"}))
复制代码

即可
回复

使用道具 举报

结帖率:86% (6/7)
 楼主| 发表于 2020-6-15 23:06:05 | 显示全部楼层   湖南省娄底市
Ossian 发表于 2020-6-15 23:01
开头加上以上
然后调用
即可

你写个可以调试的调用函数谢谢,这边调试不了
回复

使用道具 举报

结帖率:86% (6/7)
 楼主| 发表于 2020-6-15 23:10:10 | 显示全部楼层   湖南省娄底市
Ossian 发表于 2020-6-15 23:01
开头加上以上
然后调用
即可

你这个JS 也不对啊!
回复

使用道具 举报

结帖率:100% (3/3)
发表于 2020-6-15 23:13:56 | 显示全部楼层   广东省揭阳市
2557925628 发表于 2020-6-15 23:10
你这个JS 也不对啊!

自己弄
你给的明文 论坛屏蔽了一点文 字
回复

使用道具 举报

结帖率:86% (6/7)
 楼主| 发表于 2020-6-15 23:15:30 | 显示全部楼层   湖南省娄底市
Ossian 发表于 2020-6-15 23:13
自己弄
你给的明文 论坛屏蔽了一点文 字

  1. function o(e) {
  2.     var t = "",
  3.     a = uni.getStorageSync("userInfo");
  4.     a && (t = a.token),
  5.     t && "undefined" !== t && (e || (e = {}), e["token"] = t, e["appkey"] = "30fdfa349267f2c78c7e268855ee4aa9", e["timestamp"] = Math.round(new Date / 1e3) + 100, e["format"] = "json", e["sign"] = r(Object.assign(e)))
  6. }
  7. function r(e) {
  8.     for (var t = Object.keys(e).sort(), a = "30fdfa349267f2c78c7e268855ee4aa9", n = ["undefined", "object", "function"], r = 0, o = t.length; r < o; r++) if ("sign" !== t[r]) {
  9.         var l = t[r];
  10.         e[l] && -1 === n.indexOf(typeof e[l]) && (a += l + e[l])
  11.     }
  12.     return a += "30fdfa349267f2c78c7e268855ee4aa9"
  13. }

  14. 传入参数:  {"cid":62519,"t":1,"token":"e7b98fdc73884d169b15b455b0c5eb48","appkey":"16534887809","timestamp":1592151233,"format":"json","sign":"2d0ddb4753091c2653d0677e*F85ea0"}

  15. 响应结果   “30fdfa349267f2c78c7e268855ee4aa9appkey” + appkey + “cid” + cid + “formatjsont1timestamp” + timestamp + “token” + token + “30fdfa349267f2c78c7e268855ee4aa9”

  16. 响应结果   “30fdfa349267f2c78c7e268855ee4aa9appkey16534887809cid62519formatjsont1timestamp1592151233tokene7b98fdc73884d169b15b455b0c5eb4830fdfa349267f2c78c7e268855ee4aa9”
复制代码
回复

使用道具 举报

结帖率:100% (3/3)
发表于 2020-6-15 23:16:34 | 显示全部楼层   广东省揭阳市

自己搞吧 不要再回了
回复

使用道具 举报

结帖率:100% (4/4)

签到天数: 1 天

发表于 2020-6-16 01:33:08 | 显示全部楼层   浙江省衢州市
发网站
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则 致发广告者

发布主题 收藏帖子 返回列表

sitemap| 易语言源码| 易语言教程| 易语言论坛| 易语言模块| 手机版| 广告投放| 精易论坛
拒绝任何人以任何形式在本论坛发表与中华人民共和国法律相抵触的言论,本站内容均为会员发表,并不代表精易立场!
论坛帖子内容仅用于技术交流学习和研究的目的,严禁用于非法目的,否则造成一切后果自负!如帖子内容侵害到你的权益,请联系我们!
防范网络诈骗,远离网络犯罪 违法和不良信息举报电话0663-3422125,QQ: 793400750,邮箱:wp@125.la
Powered by Discuz! X3.4 揭阳市揭东区精易科技有限公司 ( 粤ICP备12094385号-1) 粤公网安备 44522102000125 增值电信业务经营许可证 粤B2-20192173

快速回复 返回顶部 返回列表