我的代码可以轻松快速地编写/测试代码,该代码不属于我的生产代码(主要是模拟服务器,所以我只需要 grunt 服务器)。
两部分,一个是如何删除脚本的一部分
angular.module('nglaborcallApp', [
'ngCookies',
'ngResource',
'ngSanitize',
'ngRoute',
'server_mocks', // Don't want this line in the production build
'dialogs'
]
然后是需要删除的 index.html 部分
<!-- build:js({.tmp,app}) scripts/mocks/mocks.js -->
<script type='text/javascript'>var Mocks = {};</script>
<script src='scripts/mocks/jobs.js'></script>
<script src='scripts/mock.js'></script>
<!-- endbuild -->
所以这可能是2个问题。我在 usemin 文档中没有看到任何关于此的内容,所以我猜测还有其他工具,但我不知道该工具的名称是什么。
另一种可能性是我做错了,而不是注入这个模拟对象,我应该用 grunt 服务器来做。其他人都在做什么?