我的示例代码是。
<target name="retrieve-userdata" depends="test-src">
<echo message="start the process for fetch region and event"/>
<exec executable="curl">
<arg value='http://localhost/magento/index.php/facebook/index/test' />
</exec>
<echo message="end the process for fetch region and event"/>
</target>
当我们运行这个蚂蚁时,这个
http://localhost/magento/index.php/facebook/index/test
action 被调用并执行这个动作。其中,循环执行多次并获取用户 facebook 事件。
因此,当在此操作中执行循环时,我们希望在控制台上显示每个事件名称。
请帮助我。在此先感谢。