本文介绍了故障排除“无法创建任务或类型 foreach"当使用 <foreach>的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在尝试在 Ant 脚本中使用 foreach 循环,但收到消息:问题:无法创建任务或输入 foreach 原因:名称未定义.
I'm trying to use the foreach loop in an Ant script but I get the message: Problem: failed to create task or type foreach Cause: The name is undefined.
我不明白为什么这不起作用.它不是第 3 方库.这是最新版本 Ant (1.8) 中的一项标准任务.
I don't understand why this doesn't work. It is not a 3rd party library. It is a standard task that would be part of the latest version of Ant (1.8).
<target name="parse">
<echo message="The first five letters of the alphabet are:"/>
<foreach param="instance" list="a,b,c,d,e">
</foreach>
</target>
推荐答案
不,不是.至少我在ant手册.它似乎是 ant-contrib 项目 的一部分,因此需要单独安装.
No, it's not. At least I can't find it in the list of core and optional tasks in the ant manual.It seems to be part of the ant-contrib project and thus needs to be installed separately.
这篇关于故障排除“无法创建任务或类型 foreach"当使用 <foreach>的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!