zoukankan      html  css  js  c++  java
  • Egret Inspector google 插件 浏览器报错的解决方案:

    injectScripts.min.js  Uncaught TypeError: this.addChild is not a function 

    地址: https://github.com/jsl6/egret-inspector-install 

    Egret 白鹭开发Chrome插件(修复版)

    控制台偶尔会报错 Uncaught TypeError: this.addChild is not a function 。 这插件依赖页面中的 Egret 引擎,当它在加载时,游戏页面中的 Egret 引擎可能还未完全加载,所以调用 this.addChild 方法导致报错。

    inspector error

    解决 this.addChild is not a function 报错

    EgretInspector-install 目录中的 contentScripts.min.js 文件,将压缩后的代码进行格式化还原。再将还原后的 313 - 320 行代码进行替换,原代码:

    if (EGRETRELEASE) {
      n = ["injectScripts.min.js"];
    }
    e.addScript(n);
    window.setTimeout(function() {
      t.startInspectIfDevToolOpen();
    }, 200);

    修改为:

       if (EGRETRELEASE) {
          n = ["injectScripts.min.js"];
        }
        
      window.setTimeout(function() {
        e.addScript(n);
        t.startInspectIfDevToolOpen();
      }, 200);

    直接使用

    git clone https://github.com/jsl6/EgretInspector-install.git

    打开chrome 扩展程序,开发模式下,加载已解压的扩展程序 extend

    选择前面EgretInspector-install即可。 这时打开Egret运行页面,插件不会报错。 EgretInspector

    亲测Chrome 79.0.3945.88(正式版本)有效。
    修改基于:EgretInspector-v2.5.5。

  • 相关阅读:
    2016年中国大学生程序设计竞赛(杭州)解题报告
    HNOI2017滚粗记
    BZOJ4515 SDOI2016 游戏
    BZOJ2157 旅行 模拟
    codevs2019 Uva10029 递变阶梯
    POJ 2585 Window Pains 题解
    linux 下 打包 和解压缩
    php 分页
    js 四舍五入
    angularjs 过滤多组数据
  • 原文地址:https://www.cnblogs.com/porter/p/13539303.html
Copyright © 2011-2022 走看看