动态图像ng-src不会更改为缩小的图像名称

时间:2015-03-16 10:45:41

标签: angularjs gruntjs minify grunt-usemin grunt-contrib-imagemin

我有两张图片,一张绿色复选标记和一张灰色复选标记。当用户检查或取消选中列表中的项目时,将显示/隐藏这些内容。我遇到的问题是,当使用grunt-contrib-imagemin缩小应用的图片时,这两张图片ng-src不会更改为缩小的图片名称。任何想法为什么会发生这种情况以及如何解决它?

<img ng-if="item.checkedState === 'unchecked'" ng-src="images/unchecked.png" ng-click="changeCheckedState(item)">
<img ng-if="item.checkedState === 'checked'" ng-src="images/checked.png" ng-click="changeCheckedState(item)">

我的usemin任务:

usemin: {
  html: ['<%= yeoman.dist %>/{,*/}*.html'],
  css: ['<%= yeoman.dist %>/styles/{,*/}*.css'],
  options: {
    assetsDirs: ['<%= yeoman.dist %>','<%= yeoman.dist %>/images']
  }
}

编辑:通过测试@Tony Barnes解决方案:

usemin: {
  html: ['<%= yeoman.dist %>/{,*/}*.html'],
  css: ['<%= yeoman.dist %>/styles/{,*/}*.css'],
  options: {
    assetsDirs: ['<%= yeoman.dist %>','<%= yeoman.dist %>/images'],
    patterns: {
    html: [
        [/<img[^\>]*[^\>\S]+ng-src=[""]([^'"\)#]+)(#.+)?["']/gm, 'Update the HTML with non standard ng-src attribute on img']
    ]
    }
  }
}

脚本和样式的其他src名称失败,即文件vendors132918.jsvendor.js中变为src,然后因为文件不是{39}而引发404 not found错误; t叫vendor.js。是什么导致其他src在这里失败?除了我在图像上的src之外,模式不应该改变任何东西..

2 个答案:

答案 0 :(得分:4)

问题在于替换引用的grunt-usemin任务。默认情况下,usemin会忽略ng-src

如果您添加此html模式,ng-src引用将被正确替换。

usemin: {
  options: {
    patterns: {
      html: [

        [/<img[^\>]*[^\>\S]+ng-src=[""]([^'"\)#]+)(#.+)?["']/gm, 'Update the HTML with non standard ng-src attribute on img']

      ]
    }
  }
}

(灵感来自recent commit

然而,会破坏对样式和脚本的其他引用。似乎其他默认usemin模式被上述添加覆盖。

要使这一切正常,您需要将上述模式与usemin中的默认模式结合起来:

options: {
    assetsDirs: ['<%= yeoman.dist %>', '<%= yeoman.dist %>/images'],
    patterns: {
      html: [
         [/(images\/.*?\.(?:gif|jpeg|jpg|png|webp|svg))/gm,
         'Update the angular directives that ref revved images'],

         //defaults from node module
         [ /<script.+src=['"]([^"']+)["']/gm,
         'Update the HTML to reference our concat/min/revved script files'
         ],
         [ /<link[^\>]+href=['"]([^"']+)["']/gm,
         'Update the HTML with the new css filenames'
         ],
         [ /<img[^\>]+src=['"]([^"']+)["']/gm,
         'Update the HTML with the new img filenames'
         ],
         [ /data-main\s*=['"]([^"']+)['"]/gm,
         'Update the HTML with data-main tags',
         function (m) { return m.match(/\.js$/) ? m : m + '.js'; },
         function (m) { return m.replace('.js', ''); }
         ],
         [ /data-(?!main).[^=]+=['"]([^'"]+)['"]/gm,
         'Update the HTML with data-* tags'
         ],
         [ /url\(\s*['"]([^"']+)["']\s*\)/gm,
         'Update the HTML with background imgs, case there is some inline style'
         ],
         [ /<a[^\>]+href=['"]([^"']+)["']/gm,
         'Update the HTML with anchors images'
         ],
         [/<input[^\>]+src=['"]([^"']+)["']/gm,
         'Update the HTML with reference in input'
         ]
       ],
      js: [
          [/(images\/.*?\.(?:gif|jpeg|jpg|png|webp|svg))/gm, 
          'Update the JS to reference our revved images']
      ]
    }
  }

答案 1 :(得分:0)

如果在ngSrc指令值的开头使用一些大括号。您必须在Gruntfile中使用上面的正则表达式。

/<img[^\>]*[^\>\S]+ng\-src=['"][\{\}\:\w\s]*([^'"\)#]+)(#.+)?["']/gm