我的视图页面中有这个按钮
<a class="runimg" href="${createLink(controller: 'Ec2Controller', action: 'Start', id: i.Id)}"> Start </a>
假设获取实例的 id,然后将其传递给我在控制器中的操作。然而,它正在寻找开始视图页面,而不是在 Ec2Controller 中执行我的操作。有什么建议吗?
我的控制器有这个
def Start() {
amazonWebService.ec2.startInstances(new StartInstancesRequest([InstanceToStart]))
redirect action: index()
}