编辑或向缩小的 Angular 应用添加功能

edit or add features to a minified angular app

提问人:ViKotor Lgk 提问时间:10/21/2017 最后编辑:ViKotor Lgk 更新时间:10/21/2017 访问量:181

问:

我想知道是否有一些方法可以调整现有的已经缩小的 55000 行代码😀?

我正在开发一个应用程序,我想添加一些额外的东西: 通过添加新的控制器?还是新指令?在同一个 js 文件或单独的新 js 文件上?

这很难弄清楚,我是编码界的新手,到目前为止我所做的所有测试都失败了

另一种选择是运行 jquery,但似乎只有在渲染 😭 dom 后才能运行它...... (多景观水疗中心)

我真的需要做这个修改,来源不再存在

我迫不及待地想得到你的帮助🤗!

感谢您抽出宝贵时间阅读;)

<!doctype html><!--Main Page "index.html"--> 
<html>
   <head>
      <meta charset="utf-8">
      <title class="PageName">myapplitest</title>
      <meta name="description" content="">
      <link rel="stylesheet" href="styles/custom.css">
      <link rel="stylesheet" href="customStyles/DialogBox.css">
      <link rel="stylesheet" href="customStyles/button.css">
      <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
      <script src="source/event.js"></script>
   </head>
   <body id="ezApp" ng-controller="Ctrller" ng-class="currentPageClass">
      <div  ui-view class="height-100"></div>

      <script src="scripts/scripts.f0ae5e15.js"></script>  <!--angular 55000 LINES OF CODE ^-^ -->

   </body>
</html>




<!-- the modifications I want to do in another app' view-->

<div class="modal-content infoModal">
        <div class="modal-body">
            <span id='titleJobModal' >{{jobInfo.name}}</span> <!--I want to act on this after the data is binded-->
        </div>
</div>


<!-- jquery there:  <script src="source/event.js"></script> 

对于这个 Jq 片段,当我在谷歌控制台中执行它时,它可以工作。不是“负载”。-->

jQuery(window).ready(function() {
    $('#titleJobModal').hover(

        function () {
            $('#titleJobModal').css('color','blue');
        }, 

        function () {
            $('#titleJobModal').css('color','red');
        }
    ); /*the real challenge is to make the text change color if particular strings are in the word I look for*/

胜利者

jQuery Angular 控制器 minify using 指令

评论

0赞 pirs 10/21/2017
更精确地说明您想要做什么(使用部分代码、示例......这种代码在最后一步基本上是缩小的,用一个webpack或类似的东西。
1赞 ViKotor Lgk 10/21/2017
感谢您抽出宝贵时间!我的帖子已编辑。
0赞 pirs 10/22/2017
Angular 不像经典的 html 页面那样工作,你应该看看它:stackoverflow.com/questions/30623825/......

答: 暂无答案