Laravel change locale not working(Laravel 更改语言环境不起作用)
问题描述
我正在使用由英语和荷兰语组成的语言下拉列表.
I am using a dropdown lists for the languages, consisting of english and dutch.
<form class="" action="{{url('/locale')}}" method="post">
Locale:
<select class="" name="locale" onchange="this.form.submit()">
<option value="en" >English</option>
<option value="du" >Dutch</option>
</select>
</form>
那么这是我的 routes.php,
Then this is my routes.php,
Route::post('/locale', function(){
App::setLocale(Request::Input('locale'));
return redirect()->back();
});
而且它不工作.
在我的项目中,路径是这样的
In my project, the path is like this
resources/
/du
navigation.php
/en
/navigation.php
来自荷兰语(du) 'navigation.php'
From the Dutch(du) 'navigation.php'
<?php
return [
"home" => 'Home-test-dutch',
];
对于英语(en)'navigation.php'
and for the English(en) 'navigation.php'
<?php
return [
"home" => 'Home',
];
推荐答案
我从这篇文章中解决了我的问题 https://mydnic.be/post/laravel-5-and-his-fcking-non-persistent-app-setlocale
I solved my problem from this article https://mydnic.be/post/laravel-5-and-his-fcking-non-persistent-app-setlocale
感谢贡献非持久"一词的人们
Thanks to the people who contributed the word 'non persistent'
这篇关于Laravel 更改语言环境不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Laravel 更改语言环境不起作用
- Mod使用GET变量将子域重写为PHP 2021-01-01
- 没有作曲家的 PSR4 自动加载 2022-01-01
- 正确分离 PHP 中的逻辑/样式 2021-01-01
- 如何定位 php.ini 文件 (xampp) 2022-01-01
- Oracle 即时客户端 DYLD_LIBRARY_PATH 错误 2022-01-01
- PHP Count 布尔数组中真值的数量 2021-01-01
- Laravel 仓库 2022-01-01
- SoapClient 设置自定义 HTTP Header 2021-01-01
- 带有通配符的 Laravel 验证器 2021-01-01
- 从 PHP 中的输入表单获取日期 2022-01-01