Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 ant scriptdef 任务中使用像 jQuery 这样的外部库?我想在里面使用框架。
该框架可能无法在 Ant 中以您希望的方式工作,但您可以使用 Ant FileUtils 类来导入 JavasSript,在您的<script>任务中是这样的:
<script>
eval( '' + org.apache.tools.ant.util.FileUtils.readFully( new java.io.FileReader( 'yourscript.js' ) ) );
不幸的是,我不认为 Rhinoload()方法在 Ant 中有效,所以上面看起来是最简单的解决方案。
load()