这篇文章给大家分享的是有关Laravel如何实现重定向,a链接跳转,控制器跳转功能的内容。小编觉得挺实用的,因此分享给大家做个参考,一起跟随小编过来看看吧。
Laravel重定向分类如下:
1、a链接跳转:
<a class="btn btn-success" href="{{url('admin/organization/createAuthCodeView', ['id' => $list['id']])}}" rel="external nofollow" >生成注册码</a>
2、form表单提交跳转:
<form class="form-inline" method="get" action="{{ url('admin/organization/listOrganization') }}"> <div class="form-group" > <input type="hidden" name="customer_type" value="1"> <label for="perPage">每页显示数:</label> <select class="form-control" id="perPage" name="perPage"> @foreach ( [10,20,30,50] as $e) <option value="{{$e}}" {{ $e==request('perPage') ? 'selected' : '' }} >{{$e}}</option> @endforeach </select> </div> <div class="form-group" > <label for="search">模糊搜索:</label> <input type="text" name="search" class="form-control" id="search" placeholder="请输入用户名或者邮箱或者电话" value="{{request('search')}}"> </div> <button type="submit" class="btn btn-primary" >开始搜索</button> <a href="{{url('admin/organization/createOrganization')}}" rel="external nofollow" class="pull-right"> <button class="btn btn-primary">新增机构</button> </a> </form>
3、ajax提交跳转:
<script type="text/javascript"> $(function(){ $.ajaxSetup({ headers: { 'X-CSRF-TOKEN' : '{{ csrf_token() }}' } }); $("#generate").click(function(){ $.ajax({ url:"/admin/organization/generateAuthCode", //你的路由地址 type:"post", data:{"auth_num":$('#auth_num').val(),"organization_name":$('#organization_name').val()}, timeout:30000, success:function(data){ $("#auth_codes").val(data); }, error:function(){ console.log(data); } }); }); }) </script>
4、控制器方法里面跳转:
return redirect('/admin/organization/listOrganization');
感谢各位的阅读!关于“Laravel如何实现重定向,a链接跳转,控制器跳转功能”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,让大家可以学到更多知识,如果觉得文章不错,可以把它分享出去让更多的人看到吧!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。