アクションを実行するには、Id 値をコントローラーに渡す必要があります。現在、これは私のコントローラーにあるものです。
def StartServer() {
amazonWebService.ec2.startInstances(new StartInstancesRequest([InstanceToStart]))
redirect action: index()
}
値はビューから取得されInstanceToStart
ます。私の見解では、次の列、ID、およびボタンを含むテーブルがあります。
i-333dced <Button>
i-dhdhdhd <Button>
i-er32ws <Button>
ボタンを押すと、ID が渡されてアクションが実行されます。私のボタンコードは次のとおりです。
<g:link action="StartServer">
<input type="button" value="Start Server" class="stopimg" id="startServer"/>
</g:link>