【发布时间】:2015-12-31 12:38:26
【问题描述】:
管理员登录后,我在我的 Laravel 5 应用程序中使用更改密码功能。我使用 laravel 提供的默认表单来更改密码功能,该功能重定向到 /userpasswords/email,当用户单击“发送密码重置链接”。在邮件 ID 上发送了一封邮件,但我想更改此 url。我的网址变成http://localhost/bqs_test/public/index.php/password/reset/1f488a5daf26b57af2d928bb9c0b14e627b34c3459d819f471d402c42f476bf2,通过电子邮件 ID 发送 但我希望它是http://localhost/bqs_test/public/index.php/userpasswords/reset/1f488a5daf26b57af2d928bb9c0b14e627b34c3459d819f471d402c42f476bf2。我该怎么做,我是 Laravel 的新手,所以请有人帮忙。我的代码如下:
<?php echo Form::open(array('url' => '/userpasswords/email', 'method' => 'post','class'=>'form-horizontal')); ?>
<input type="hidden" name="_token" value="{{ csrf_token() }}">
<div class="form-group">
<label class="col-md-4 control-label">E-Mail Address</label>
<div class="col-md-6">
<input type="email" class="form-control" name="email" value="{{ Auth::user()->email }}" readonly>
</div>
</div>
<div class="form-group">
<div class="col-md-6 col-md-offset-4">
<button type="submit" class="btn btn-primary">
Send Password Reset Link
</button>
</div>
</div>
路由定义为:
Route::controllers([
'auth' => 'Auth\AuthController',
'password' => 'Auth\PasswordController',
'userpasswords' => 'Auth\UserPasswordController'
]);
UserPasswordController 与 PasswordController 相同,但它使用不同的特征 ResetPasswords,与 ResetsPasswords 相同,略有变化。我在 ResetPasswords 中的 postEmail 方法是这样的:
public function postEmail(Request $request)
{
$this->validate($request, ['email' => 'required|email']);
$response = $this->passwords->sendResetLink($request->only('email'), function($m)
{
$m->subject($this->getEmailSubject());
});
switch ($response)
{
case PasswordBroker::RESET_LINK_SENT:
return redirect()->back()->with('status', trans($response));
case PasswordBroker::INVALID_USER:
return redirect()->back()->withErrors(['email' => trans($response)]);
}
}
请高人帮忙,我该如何更改 URL。
【问题讨论】: