开启辅助访问 切换到宽版

精易论坛

 找回密码
 注册

QQ登录

只需一步,快速开始

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

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


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

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

查看: 1641|回复: 9
收起左侧

[完成] js调试

 关闭 [复制链接]
结帖率:33% (3/9)
发表于 2019-8-24 22:46:34 | 显示全部楼层 |阅读模式   江苏省苏州市
5精币
post一个网站内容需要得到参数,且这个参数是js加密的我找到了准确的js程序段但是改写的时候一直不行function s4() {
    return (65536 * (1 + Math.random()) || 0).toString(16).substring(1)
}
function guid() {
    Date = new Date()
    return (this.s4() + Date.now() + Math.floor(999999 * Math.random())).replace(new RegExp("\\.", "gm"), "")
}

function getSuffix(e) {
    var t = e.lastIndexOf("."),
        i = "";
    return t !== -1 && (i = e.substring(t)),
        i
}

function calculateObjectName(e, t, i) {
    this.gObjectName += "" + e;
    var o = this.getSuffix(e);
    if (o = t && i ? "_" + t + "_" + i + o : "_0_0" + o,
        this.isAvatar)
        this.gObjectName = "avatar_" + this.guid() + o;
    else {
        if (this.isIdCard)
            this.gDirname = "idcard/";
        else if (this.isOrganization)
            this.gDirname = "organization/";
        else if (this.isVideo)
            this.gDirname = "news/vod/";
        else if (this.isImg || this.isPublishImg)
            this.gDirname = "news/img/";
        else if (this.isMusic) {
            var n = new Date;
            this.gDirname = "news/audio/" + n.getFullYear() + "/" + (n.getMonth() + 1) + "/"
        }
        this.gObjectName = this.gDirname + this.guid() + o
    }
    return this.gObjectName
}




以上就是js代码全部 我需要调用calculateObjectName()函数 并传入参数给e,其他忽略不计。

1

1



最佳答案

查看完整内容

Date.now() --> new Date().getTime()

结帖率:100% (3/3)
发表于 2019-8-24 22:46:35 | 显示全部楼层   广东省揭阳市
Date.now() --> new Date().getTime()
回复

使用道具 举报

结帖率:33% (3/9)
 楼主| 发表于 2019-8-24 23:07:01 | 显示全部楼层   江苏省苏州市
Ossian 发表于 2019-8-24 22:54
Date.now() --> new Date().getTime()

谢谢 你这样的结果是对的 但是我想问一下为啥输出结果是这样的啊
--> 返回类型:String(字符串)
--> 执行结果:undefined2af56e00969311566659003617659780_0_0.mp4

正确的应该是这样的news/vod/6f577102401141566636223947235255_0_0.mp4 就前面“news/vod/”这个
回复

使用道具 举报

结帖率:100% (3/3)
发表于 2019-8-24 23:14:30 | 显示全部楼层   广东省揭阳市
ckun 发表于 2019-8-24 23:07
谢谢 你这样的结果是对的 但是我想问一下为啥输出结果是这样的啊
--> 返回类型:String(字符串)
-->  ...
  1. if (this.isIdCard)
  2.             this.gDirname = "idcard/";
  3.         else if (this.isOrganization)
  4.             this.gDirname = "organization/";
  5.         else if (this.isVideo)
  6.             this.gDirname = "news/vod/";
  7.         else if (this.isImg || this.isPublishImg)
  8.             this.gDirname = "news/img/";
  9.         else if (this.isMusic) {
  10.             var n = new Date;
  11.             this.gDirname = "news/audio/" + n.getFullYear() + "/" + (n.getMonth() + 1) + "/"
  12.         }
复制代码

这段是分类并赋值this.gDirname的  

但这边的this都指向window
window下的属性isIdCard  isOrganization等等都不存在
所以this.gDirname自然是未知(undefined)
回复

使用道具 举报

结帖率:33% (3/9)
 楼主| 发表于 2019-8-24 23:17:24 | 显示全部楼层   江苏省苏州市
Ossian 发表于 2019-8-24 23:14
这段是分类并赋值this.gDirname的  

但这边的this都指向window

是不是找到那些个函数就可以了?
回复

使用道具 举报

结帖率:100% (3/3)
发表于 2019-8-24 23:20:44 | 显示全部楼层   广东省揭阳市
ckun 发表于 2019-8-24 23:17
是不是找到那些个函数就可以了?

...........
回复

使用道具 举报

结帖率:33% (3/9)
 楼主| 发表于 2019-8-24 23:25:28 | 显示全部楼层   江苏省苏州市

。。。。。求指点下 不会js
回复

使用道具 举报

发表于 2019-8-25 10:01:49 | 显示全部楼层   山西省运城市
function s4() {
     return (65536 * (1 + Math.random()) || 0).toString(16).substring(1)
}
function guid() {
     Date = new Date()
     return (this.s4() + Date.getTime() + Math.floor(999999 * Math.random())).replace(new RegExp("\\.", "gm"), "")
}

function getSuffix(e) {
     var t = e.lastIndexOf("."),
         i = "";
     return t !== -1 && (i = e.substring(t)),
         i
}

function calculateObjectName(e, t, i) {
     this.gObjectName += "" + e;
     var o = this.getSuffix(e);
   
             var n = new Date;
        
      return      "news/vod/"+ this.guid() + o
   

}
回复

使用道具 举报

发表于 2019-8-25 10:12:47 | 显示全部楼层   山西省运城市
a1479760381 发表于 2019-8-25 10:01
function s4() {
     return (65536 * (1 + Math.random()) || 0).toString(16).substring(1)
}

function s4() {
     return (65536 * (1 + Math.random()) || 0).toString(16).substring(1)
}
function guid() {
     Date = new Date()
     return (this.s4() + Date.getTime() + Math.floor(999999 * Math.random())).replace(new RegExp("\\.", "gm"), "")
}

function getSuffix(e) {
     var t = e.lastIndexOf("."),
         i = "";
     return t !== -1 && (i = e.substring(t)),
         i
}

function calculateObjectName(e, t, i) {
     this.gObjectName += "" + e;
    var o = this.getSuffix(e);
     if (o = t && i ? "_" + t + "_" + i + o : "_0_0" + o,
         this.isAvatar)
         this.gObjectName = "avatar_" + this.guid() + o;
     else {
         this.gObjectName = "news/vod/" + this.guid() + o
     }
     return this.gObjectName
}

回复

使用道具 举报

结帖率:33% (3/9)
 楼主| 发表于 2019-8-25 23:17:09 | 显示全部楼层   江苏省苏州市
a1479760381 发表于 2019-8-25 10:12
function s4() {
     return (65536 * (1 + Math.random()) || 0).toString(16).substring(1)
}

谢谢谢谢谢谢谢谢谢谢
回复

使用道具 举报

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

本版积分规则 致发广告者

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

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

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