問題タブ [laravel-helper]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
laravel - Laravel 4ヘルパーと基本機能のベストプラクティス?
Laravel 4 でグローバル関数を配置するのに最適な場所を理解しようとしています。たとえば、日付の書式設定です。ファサードはモジュール化されすぎているため、ファサードを作成する価値はないと思います。ライブラリ フォルダーの作成とそこへのクラスの格納に関する記事を読んだことがありますが、単純な関数としてはかなりの量のように思えます。このような「ツール」を Blade テンプレートで利用できるようにすべきではありませんか?
このようなもののベスト プラクティスは何ですか?また、それを Blade テンプレートで使用できるようにするにはどうすればよいですか?
php - Laravel:プロトコルなしでアセットを設定する
asset
以下のようなヘルパー関数を使用します。
取得します
それを可能にするlaravel組み込みソリューションはありますか
http
とhttps
プロトコルで適切に表示されますか?
[編集]
通常、Laravel はプロトコルを正しく検出しますが、ロード バランサーの背後では検出されません。だから私はまだこれに対する解決策を探しています。
php - Laravel URL helper: How to generate a perfect URL with query parameters and hash
Suppose the route is like this:
So, when we will create an URL using URL helper of Laravel,
will display example.com/messages/12
.
This is correct. Let's have some hash in the URL.
This will display example.com/messages/12#reply_23
.
This looks good. Now let's add some query strings instead of the hash.
This will display example.com/messages/12?ref=email
. This looks cool.
Now add both query string and hash.
Now this will display example.com/messages/12?ref=email&#reply_23
. This looks little ugly because of the &
in the URL. However it's not creating a lot of problem, I would like to get a clean URL like example.com/messages/12?ref=email#reply_23
. Is there a way to get rid of the unnecessary &
in the URL?
Edit: There is a workaround, but I am looking for a solid answer.
php - laravel アプリのコントローラーでヘルパーを使用できない
アプリケーションを構築していますが、今はヘルパーを作成しています
今、私はコントローラーでこのようなことをすることができません
これは私のヘルパー サービス プロバイダーです
config/app.php ファイルにエイリアスとしてイベントを追加しました
'Student' => App\Helpers\Students::class,
php - Laravelコントローラーでヘルパー関数の戻り値をURLパスとして取得する方法
このようなlaravelヘルパーを作成しました。これは、データベースフォルダーの場所の下の/ sql /にsqlファイルを生成するため、database/sqls/xxxxx.sql
この AbcController.php のようなコントローラー関数を作成します
私のルートは次のとおりです: Route::get('path', 'AbcController@index');
ただし、ファイルをダウンロードするためのパスは返されません。