我不知道如何使用Laravel Form将数据(在POST中)发送到我的另一个站点。
我尝试了一个(GET)表格:
{!! Form::open(array('url' => 'http://other.domain.com')) !!}
<input type="text" name="test" value="something" />
<button type="submit">Submit</button>
{!! Form::close() !!}
它保留在:mydomain:8000 / mypage?test = something
但我希望这是http://other.domain.com?test=something
有任何线索吗?
答案 0 :(得分:0)
我认为您正在寻找的是
{!! Form::open(array('action' => 'http://other.domain.com')) !!}
答案 1 :(得分:0)
我遇到的问题是'HTML':
<form>
<form action='http://other.domain.com'>
<input type="text" name="test" value="something" />
<button type="submit">Submit</button>
</form>
</form>
事实是,当你点击提交按钮时,它会采用第一个表格。非常奇怪。