Laravel中怎么依不同组织加载视图,具体代码是什么
Admin 2022-07-01 群英技术资讯 646 次浏览
一,controller 层定义helper.php 文件
定义全局常量
public function __construct() { $this->middleware(function ($request, $next) { $this->_user = Auth::user(); //全局的数据处理,所有视图共用 $this->_beforeActionInit(); if ($this->_user) { define('ORG_ID', $this->_user->organization_id); $this->_currentOrganization = Organization::find(ORG_ID); } else { define('ORG_ID', 0); } View::share('user', $this->_user); View::share('currentOrganization', $this->_currentOrganization); return $next($request); }); } /** * 获取对应视图 */if (!function_exists('get_organization_view')) { /** * @param $flag * @return \Illuminate\Config\Repository|mixed */ function get_organization_view($flag, $org_id = 1) { $view = config("view.$flag." . $org_id); if (empty($view)) { throw new RuntimeException('Orgnization Error'); } return $view; }} //二, config 下定义view.php return [ 'register' => [ 1 => 'register.1', 2 => 'register.2' ] ] // 三,sercive 层定义UserService.php public function getValidateRule($org_id) { $rule = [//验证必填项,确认密码和密码要相同 'userName' => 'required|alpha_num|size:6|regex:/^[a-zA-Z]{3}[0-9]{2}[a-zA-Z]{1}$/', 'password' => 'required|min:6', 'confirmPassword' => 'required|same:password', ]; return $rule; }
四,view下定义视图
register文件夹下有
1.blade.php,
2.blade.php
//五,controller下引用 /** * 注册 */ public function register(Request $request) { //提交注册 if ($request->isMethod('post')) { $credentials = $request->only(['userName', 'password', 'confirmPassword']);//表单提交数据 $rules = UserService::make($location->organization_id)->getValidateRule($location->organization_id); $validator = Validator::make($credentials, $rules); if ($validator->fails()) {//验证不通过 return Redirect::back()->withInput()->withErrors($validator); } $exists = User::where('name', $credentials['userName'])->first(); if ($exists) { $result = Lang::has("register.userExists") ? trans("register.userExists") : "User exists"; return $this->_remind('error', $result, 'register'); } $user = new User(); $user->name = trim($credentials['userName']); $user->password = bcrypt($credentials['password']); if ($user->save()) { //注册成功 return redirect('/login')->with('msg', Lang::has("register.success") ? trans("register.success") : 'Register Success.'); } else { //注册失败 $validator->errors()->add('other', $user);//如果注册失败会把错误原因返回 return Redirect::back()->withInput()->withErrors($validator); } } return view(get_organization_view('register',$organization_id), ["location" => $location->name]);//加载视图 } catch (\Exception $ex){ $this->_remind('error', $ex->getMessage(),'getActivationCode'); } }
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
猜你喜欢
一、总结1、php的全局变量:php的全局变量和C++,Java的全局变量不一样2、页面嵌套php:我在html页面中嵌套php代码的时候,php的全局变量好像和C++,Java的全局变量一样,好像是,记不清了3、php全局变量使用:php全局变量用global定义一下就好,就在外面定义global是错的,必须在函数内声明4、global定义全局变量:global定义全局变量的时候,不能一
laravel作为PHP最常用的框架之一,对于新手来说肯定是需要熟悉了解的,那么作为laravel新手入门有哪些是需要知道的呢?下面给大家分享一些laravel入门需要熟悉的知识点、
这篇文章主要为大家介绍了laravel源码分析队列Queue方法示例,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步早日升职加薪<BR>
学习php7连接MySQL制作简易查询程序,讲解详细,有需要的朋友可以看看,了解了解,有问题欢迎留言讨论。
php数组添加元素:1、array_push()函数将数组视为栈,将传入的变量压入数组的末尾,数组变量增加、长度增加。2、arr[]直接添加元素。3、array_fill()用给定的值填充数组。
成为群英会员,开启智能安全云计算之旅
立即注册Copyright © QY Network Company Ltd. All Rights Reserved. 2003-2020 群英 版权所有
增值电信经营许可证 : B1.B2-20140078 粤ICP备09006778号 域名注册商资质 粤 D3.1-20240008