Mojolicious-8.12 > Mojolicious
Mojolicious-8.12

名前

Mojolicious - Real-time web framework

Mojolicious - リアルタイムWebフレームワーク

使い方

  # Application
  package MyApp;
  use Mojo::Base 'Mojolicious';
  # アプリケーション
  package MyApp;
  use Mojo::Base 'Mojolicious';
  # Route
  sub startup {
    my $self = shift;
    $self->routes->get('/hello')->to('foo#hello');
  }
  # ルート(Route)
  sub startup {
    my $self = shift;
    $self->routes->get('/hello')->to('foo#hello');
  }
  # Controller
  package MyApp::Controller::Foo;
  use Mojo::Base 'Mojolicious::Controller';
  # コントローラー
  package MyApp::Controller::Foo;
  use Mojo::Base 'Mojolicious::Controller';
  # Action
  sub hello {
    my $self = shift;
    $self->render(text => 'Hello World!');
  }
  # アクション
  sub hello {
    my $self = shift;
    $self->render(text => 'Hello World!');
  }

説明

An amazing real-time web framework built on top of the powerful Mojo web development toolkit. With support for RESTful routes, plugins, commands, Perl-ish templates, content negotiation, session management, form validation, testing framework, static file server, CGI/PSGI detection, first class Unicode support and much more for you to discover.

強力な Mojo Web上に構築された素晴らしいリアルタイムWebフレームワーク 開発ツールキット。 RESTfulなルート、プラグイン、コマンドをサポート Perl風のテンプレート、コンテンツネゴシエーション、セッション管理、フォーム検証、 テストフレームワーク、静的ファイルサーバ、CGI/PSGI検出、ファーストクラス のUnicodeサポート。より多くは、新名が発見してください。

Take a look at our excellent documentation in Mojolicious::Guides!

素晴らしいドキュメントであるMojolicious::Guidesを見てください。

フック

Mojolicious will emit the following hooks in the listed order.

Mojoliciousは並べられた順で次のフックを発行します。

before_server_start

Emitted right before the application server is started, for web servers that support it, which includes all the built-in ones (except for Mojo::Server::CGI).

アプリケーションサーバーが起動する直前に発行されます。 Mojo::Server::CGIを除くすべてのビルトインサーバーを含むサポートがあります。

  $app->hook(before_server_start => sub {
    my ($server, $app) = @_;
    ...
  });

Useful for reconfiguring application servers dynamically or collecting server diagnostics information. (Passed the server and application objects)

アプリケーションサーバーを動的に再構成したり、サーバー診断情報を収集したりするのに便利です。 (サーバーとアプリケーションオブジェクトを渡します)

after_build_tx

Emitted right after the transaction is built and before the HTTP request gets parsed.

トランザクションが構築された直後、かつ HTTP リクエストが解析される前に 発生します。

  $app->hook(after_build_tx => sub {
    my ($tx, $app) = @_;
    ...
  });

This is a very powerful hook and should not be used lightly, it makes some rather advanced features such as upload progress bars possible. Note that this hook will not work for embedded applications, because only the host application gets to build transactions. (Passed the transaction and application objects)

これはとても強力なフックで簡単には利用されるべきではないでしょう。より進んだ機能としてアップロードの 進捗バーなどに利用できますが、埋め込まれたアプリケーションでは、 ホストアプリケーションだけが、トランザクションをビルドできるので、 機能しないということに 注意してください。 (トランザクションとアプリケーションのインスタンスが渡されます。)

around_dispatch

Emitted right after a new request has been received and wraps around the whole dispatch process, so you have to manually forward to the next hook if you want to continue the chain. Default exception handling with "reply->exception" in Mojolicious::Plugin::DefaultHelpers is the first hook in the chain and a call to "dispatch" the last, yours will be in between.

新しいリクエストを受信した直後に発行され、ディスパッチプロセス全体をラップします。 ですので、チェーンを継続するためには、次のフックに手動で転送する必要があります。 。"reply->exception" in Mojolicious::Plugin::DefaultHelpersは、チェーンにおける最初のフックで、 "reply->exception"の呼び出しが最後です。あなたのディスパッチは、この間に入ります。

  $app->hook(around_dispatch => sub {
    my ($next, $c) = @_;
    ...
    $next->();
    ...
  });

This is a very powerful hook and should not be used lightly, it allows you to, for example, customize application-wide exception handling, consider it the sledgehammer in your toolbox. (Passed a callback leading to the next hook and the default controller object)

これは非常に強力なフックであり、安易に使用してはいけません。 たとえば、アプリケーション全体の例外処理をカスタマイズします。 あなたのツールボックスの中のハンマーと考えてください。 (次のフックにつながるコールバックと デフォルトのコントローラオブジェクトを渡します)

before_dispatch

Emitted right before the static file server and router start their work.

静的ファイルサーバーとルーターが仕事を開始する直前に発生します。

  $app->hook(before_dispatch => sub {
    my $c = shift;
    ...
  });

Very useful for rewriting incoming requests and other preprocessing tasks. (Passed the default controller object)

入ってくるリクエストや、その他の前処理タスクを書き換えるのにとても有用です。 (デフォルトのコントローラオブジェクトが渡されます)

after_static

Emitted after a static file response has been generated by the static file server.

静的ファイルサーバーが生成した静的ファイルの応答の後に発生します。

  $app->hook(after_static => sub {
    my $c = shift;
    ...
  });

Mostly used for post-processing static file responses. (Passed the default controller object)

ほとんどの場合は静的ファイルのレスポンスの後処理のために利用されます。 (デフォルトのコントローラーオブジェクトを渡されます。)

before_routes

Emitted after the static file server determined if a static file should be served and before the router starts its work.

静的ファイルサーバーが静的ファイルをサーブすべきかどうか決定した後、 ルーターが仕事を開始する前に発生します。

  $app->hook(before_routes => sub {
    my $c = shift;
    ...
  });

Mostly used for custom dispatchers and collecting metrics. (Passed the default controller object)

ほとんどの場合はカスタムディスパッチャーのためか、 メトリクスを収集するために利用されます。 (デフォルトのコントローラーオブジェクトが渡されます。)

around_action

Emitted right before an action gets executed and wraps around it, so you have to manually forward to the next hook if you want to continue the chain. Default action dispatching is the last hook in the chain, yours will run before it.

アクションが実行されたすぐ後にフックが発行され、それをラップします。 チェーンを続けたい場合は、次のフックヘ手動で進めなければなりません。 デフォルトのアクションのディスパッチはチェーンの最後のフックです。 あなたのものは、その前に実行されます。

  $app->hook(around_action => sub {
    my ($next, $c, $action, $last) = @_;
    ...
    return $next->();
  });

This is a very powerful hook and should not be used lightly, it allows you for example to pass additional arguments to actions or handle return values differently. Note that this hook can trigger more than once for the same request if there are nested routes. (Passed a callback leading to the next hook, the current controller object, the action callback and a flag indicating if this action is an endpoint)

これはとても強力なフックで、軽い気持ちで利用されるべきではありません。 たとえば、追加の引数をアクションに渡したり、 戻り値を違った方法で処理したりすることができます。 (次のフックに導くコールバック、現在のコントローラーオブジェクト、 アクションコールバック、このアクションがエンドポイントである場合の フラグが渡されます。)

before_render

Emitted before content is generated by the renderer. Note that this hook can trigger out of order due to its dynamic nature, and with embedded applications will only work for the application that is rendering.

レンダラーによって生成されたコンテンツの前に、フックが発行されます。 このフックは動的な性質のために、順序がばらばらで呼びだれることに 注意してください。 埋め込みのアプリケーションでは、描画しているアプリケーションでだけ 動くでしょう。

  $app->hook(before_render => sub {
    my ($c, $args) = @_;
    ...
  });

Mostly used for pre-processing arguments passed to the renderer. (Passed the current controller object and the render arguments)

ほとんどの場合、レンダラーに渡される引数を 事前に処理するために利用されます。 (現在のコントローラーオブジェクトと描画の引数が渡されます。)

after_render

Emitted after content has been generated by the renderer that will be assigned to the response. Note that this hook can trigger out of order due to its dynamic nature, and with embedded applications will only work for the application that is rendering.

部分的ではないコンテンツがレンダラーによって生成された後に発生します。 このフックは動的な性質のために、適切でなく実行される可能性があり、 埋め込みのアプリケーションの場合はレンダリングしているアプリケーションのため だけに働くことに注意してください。

  $app->hook(after_render => sub {
    my ($c, $output, $format) = @_;
    ...
  });

Mostly used for post-processing dynamically generated content. (Passed the current controller object, a reference to the content and the format)

ほとんどの場合は、動的に生成されたコンテンツの後処理に利用されます。 (現在のコントローラーオブジェクト、コンテンツへのリファレンス、フォーマットが渡されます。)

after_dispatch

Emitted in reverse order after a response has been generated. Note that this hook can trigger out of order due to its dynamic nature, and with embedded applications will only work for the application that is generating the response.

描画されたコンテンツの後に、逆順で発生します。 このフックは動的な性質のために、適切でなく実行される可能性があり、 埋め込みのアプリケーションの場合はレンダリングしているアプリケーションのため だけに働くことに注意してください。

  $app->hook(after_dispatch => sub {
    my $c = shift;
    ...
  });

Useful for rewriting outgoing responses and other post-processing tasks. (Passed the current controller object)

外にでていくレスポンスを再編集し、タスクを後処理するのに便利です。 (コントローラーオブジェクトが渡されます。)

属性

Mojolicious implements the following attributes.

Mojolicious は以下の属性を実装しています。

commands

  my $commands = $app->commands;
  $app         = $app->commands(Mojolicious::Commands->new);

Command line interface for your application, defaults to a Mojolicious::Commands object.

アプリケーションのためのコマンドラインインターフェース。 デフォルトはMojolicious::Commandsオブジェクト。

  # Add another namespace to load commands from
  push @{$app->commands->namespaces}, 'MyApp::Command';
  # コマンドをロードするための他の名前空間
  push @{$app->commands->namespaces}, 'MyApp::Command';

controller_class

  my $class = $app->controller_class;
  $app      = $app->controller_class('Mojolicious::Controller');

Class to be used for the default controller, defaults to Mojolicious::Controller. Note that this class needs to have already been loaded before the first request arrives.

デフォルトのコントローラーとして利用されるクラスで、 デフォルトは Mojolicious::Controller です。

home

  my $home = $app->home;
  $app     = $app->home(Mojo::Home->new);

The home directory of your application, defaults to a Mojo::Home object which stringifies to the actual path.

アプリケーションのホームディレクトリで、デフォルトではMojo::Homeオブジェクトです。 このオブジェクトは実際のパスに文字列化することができます。

  # Portably generate path relative to home directory
  my $path = $app->home->child('data', 'important.txt');
  # ホームディレクトリを基準にしたポータブルなパスを生成
  my $path = $app->home->child('data', 'important.txt');

log

  my $log = $app->log;
  $app    = $app->log(Mojo::Log->new);

The logging layer of your application, defaults to a Mojo::Log object. The level will default to either the MOJO_LOG_LEVEL environment variable, debug if the "mode" is development, or info otherwise. All messages will be written to STDERR, or a log/$mode.log file if a log directory exists.

アプリケーションのロギング層です。デフォルトではMojo::Logオブジェクトです。 レベルはデフォルトでMOJO_LOG_LEVEL環境変数か、"mode"developmentならdebug、そうでない場合は、infoになります。 すべてのメッセージは、STDERRか、logが存在していた場合は、log/$mode.logに出力されます。

  # Log debug message
  $app->log->debug('It works');
   # debugメッセージをログに出力
  $app->log->debug('It works');

max_request_size

  my $max = $app->max_request_size;
  $app    = $app->max_request_size(16777216);

Maximum request size in bytes, defaults to the value of "max_message_size" in Mojo::Message. Setting the value to 0 will allow requests of indefinite size. Note that increasing this value can also drastically increase memory usage, should you for example attempt to parse an excessively large request body with the methods "dom" in Mojo::Message or "json" in Mojo::Message.

リクエストの最大バイトサイズ。デフォルトは"max_message_size" in Mojo::Messageの値です。値を0に設定すると、 リクエストに無限のサイズを許可します。この値を大きくすると劇的に、メモリ使用が増えることに注意してください。 たとえば、とても大きなリクエストボディを"dom" in Mojo::Message"json" in Mojo::Messageで解析を試みようとする場合などです。

mode

  my $mode = $app->mode;
  $app     = $app->mode('production');

The operating mode for your application, defaults to a value from the MOJO_MODE and PLACK_ENV environment variables or development.

アプリケーションのオペレーションモード、 デフォルトは、MOJO_MODEPLACK_ENVからの値、 あるいはdevelopmentです。

moniker

  my $moniker = $app->moniker;
  $app        = $app->moniker('foo_bar');

Moniker of this application, often used as default filename for configuration files and the like, defaults to decamelizing the application class with "decamelize" in Mojo::Util.

このアプリケーションのモニカー。設定ファイルのためのデフォルトの ファイル名としてしばしば利用されます。 "decamelize" in Mojo::Utilでアプリケーションクラスを デキャメライズしたものがデフォルトの値です。

plugins

  my $plugins = $app->plugins;
  $app        = $app->plugins(Mojolicious::Plugins->new);

The plugin manager, defaults to a Mojolicious::Plugins object. See the "plugin" method below if you want to load a plugin.

プラグインマネージャー。デフォルトは Mojolicious::Plugins オブジェクトです。 通常はこれを気にしなくても構いません。 プラグインをロードしたいのであれば"plugin"メソッドを利用してください。

  # Add another namespace to load plugins from
  push @{$app->plugins->namespaces}, 'MyApp::Plugin';
  # プラグインをロードするための他の名前空間を追加
  push @{$app->plugins->namespaces}, 'MyApp::Plugin';

renderer

  my $renderer = $app->renderer;
  $app         = $app->renderer(Mojolicious::Renderer->new);

Used to render content, defaults to a Mojolicious::Renderer object. For more information about how to generate content see Mojolicious::Guides::Rendering.

アプリケーションで内容を表示するのに使用され、デフォルトは Mojolicious::Rendererオブジェクトです。 コンテンツの生成に関するより多くの情報を得るには、 Mojolicious::Guides::Rendering を見てください。

  # Enable compression
  $app->renderer->compress(1);
  # 圧縮を有効にする
  $app->renderer->compress(1);
  # Add another "templates" directory
  push @{$app->renderer->paths}, '/home/sri/templates';
  # 他の"templates"ディレクトリを追加
  push @{$app->renderer->paths}, '/home/sri/templates';
  # Add another "templates" directory with higher precedence
  unshift @{$app->renderer->paths}, '/home/sri/themes/blue/templates';
  # 優先順位の高い他の"templates"ディレクトリを追加
  unshift @{$app->renderer->paths}, '/home/sri/themes/blue/templates';
  # Add another class with templates in DATA section
  push @{$app->renderer->classes}, 'Mojolicious::Plugin::Fun';
  # DATAセクションのテンプレートのための他のクラスを追加
  push @{$app->renderer->classes}, 'Mojolicious::Plugin::Fun';

routes

  my $routes = $app->routes;
  $app       = $app->routes(Mojolicious::Routes->new);

The router, defaults to a Mojolicious::Routes object. You use this in your startup method to define the url endpoints for your application.

ルートディスパッチャ。デフォルトは Mojolicious::Routes オブジェクトです。 startup メソッドの中で、アプリケーションに URL のエンドポイントを 定義するために使用します。

  # Add routes
  my $r = $app->routes;
  $r->get('/foo/bar')->to('test#foo', title => 'Hello Mojo!');
  $r->post('/baz')->to('test#baz');
  # ルートの追加
  my $r = $app->routes;
  $r->get('/foo/bar')->to('test#foo', title => 'Hello Mojo!');
  $r->post('/baz')->to('test#baz');
  # Add another namespace to load controllers from
  push @{$app->routes->namespaces}, 'MyApp::MyController';
  # コントローラーをロードするために他の名前空間を追加
  push @{$app->routes->namespaces}, 'MyApp::MyController';

secrets

  my $secrets = $app->secrets;
  $app        = $app->secrets([$bytes]);

Secret passphrases used for signed cookies and the like, defaults to the "moniker" of this application, which is not very secure, so you should change it!!! As long as you are using the insecure default there will be debug messages in the log file reminding you to change your passphrase. Only the first passphrase is used to create new signatures, but all of them for verification. So you can increase security without invalidating all your existing signed cookies by rotating passphrases, just add new ones to the front and remove old ones from the back.

署名付きクッキーのための秘密のパスフレーズで、 デフォルトはこのアプリケーションの"moniker"の値です。 これはあまりセキュアではありませんので、変更すべきです。 セキュアではないデフォルトを使っている限り、 ログファイルの中に、パスフレーズを変えるように思い起こさせる デバッグメッセージが出力されます。 けれども、それらすべては確認のためです。 パスフレーズを回転させることによって存在しているすべての書名つきクッキーを 無効にすることなしに、セキュリティを向上させることができます。 新しいものは先頭に追加し、後ろから取り除いてください。

  # Rotate passphrases
  $app->secrets(['new_passw0rd', 'old_passw0rd', 'very_old_passw0rd']);
  # パスフレーズをローテーションさせる。
  $app->secrets(['new_passw0rd', 'old_passw0rd', 'very_old_passw0rd']);

sessions

  my $sessions = $app->sessions;
  $app         = $app->sessions(Mojolicious::Sessions->new);

Signed cookie based session manager, defaults to a Mojolicious::Sessions object. You can usually leave this alone, see "session" in Mojolicious::Controller for more information about working with session data.

簡単な署名付きクッキーに基いたセッションで、デフォルトは Mojolicious::Sessions オブジェクトです。 通常はこれは無視してください。 セッションのデータを利用するための情報としては"session" in Mojolicious::Controllerを見てください。

  # Change name of cookie used for all sessions
  $app->sessions->cookie_name('mysession');
  # すべてのセッションのために利用されるクッキー名を変更する
  $app->sessions->cookie_name('mysession');
  # Disable SameSite feature
  $app->sessions->samesite(undef);
  # 同じサイトの機能を無効にする
  $app->sessions->samesite(undef);

static

  my $static = $app->static;
  $app       = $app->static(Mojolicious::Static->new);

For serving static files from your public directories, defaults to a Mojolicious::Static object.

public ディレクトリから静的資源を提供するためのもので、デフォルトは Mojolicious::Static オブジェクトです。

  # Add another "public" directory
  push @{$app->static->paths}, '/home/sri/public';
  # 他の"public"ディレクトリを追加
  push @{$app->static->paths}, '/home/sri/public';
  # Add another "public" directory with higher precedence
  unshift @{$app->static->paths}, '/home/sri/themes/blue/public';
  # 高い優先順位で、他の"public"ディレクトリを追加
  unshift @{$app->static->paths}, '/home/sri/themes/blue/public';
  # Add another class with static files in DATA section
  push @{$app->static->classes}, 'Mojolicious::Plugin::Fun';
  # DATAセクションにおける静的ファイルのためのクラスを追加
  push @{$app->static->classes}, 'Mojolicious::Plugin::Fun';
  # Remove built-in favicon
  delete $app->static->extra->{'favicon.ico'};
  # ビルトインのファビコンを削除
  delete $app->static->extra->{'favicon.ico'};

types

  my $types = $app->types;
  $app      = $app->types(Mojolicious::Types->new);

Responsible for connecting file extensions with MIME types, defaults to a Mojolicious::Types object.

MIMEタイプをファイル拡張子に紐づけるための割り当て。デフォルトはMojolicious::Typesオブジェクト。

  # Add custom MIME type
  $app->types->type(twt => 'text/tweet');
  # カスタムのMIMEタイプを追加
  $app->types->type(twt => 'text/tweet');

ua

  my $ua = $app->ua;
  $app   = $app->ua(Mojo::UserAgent->new);

A full featured HTTP user agent for use in your applications, defaults to a Mojo::UserAgent object.

アプリケーションで利用するための完全な機能を持つHTTP1.1ユーザーエージェント。 デフォルトはMojo::UserAgentオブジェクトです。

  # Perform blocking request
  say $app->ua->get('example.com')->result->body;
  # ブロッキングなリクエストを実行
  say $app->ua->get('example.com')->result->body;

validator

  my $validator = $app->validator;
  $app          = $app->validator(Mojolicious::Validator->new);

Validate values, defaults to a Mojolicious::Validator object.

パラメーターを検証する。 デフォルトは、Mojolicious::Validatorオブジェクトです。

  # Add validation check
  $app->validator->add_check(foo => sub {
    my ($v, $name, $value) = @_;
    return $value ne 'foo';
  });
  # バリデーションのチェックを追加
  $app->validator->add_check(foo => sub {
    my ($v, $name, $value) = @_;
    return $value ne 'foo';
  });
  # Add validation filter
  $app->validator->add_filter(quotemeta => sub {
    my ($v, $name, $value) = @_;
    return quotemeta $value;
  });
  # バリデーションのフィルターを追加
  $app->validator->add_filter(quotemeta => sub {
    my ($v, $name, $value) = @_;
    return quotemeta $value;
  });

メソッド

Mojolicious inherits all methods from Mojo::Base and implements the following new ones.

MojoliciousMojo::Base から全てのメソッドを継承しており、以下の新しい メソッドを実装しています。

build_controller

  my $c = $app->build_controller;
  my $c = $app->build_controller(Mojo::Transaction::HTTP->new);
  my $c = $app->build_controller(Mojolicious::Controller->new);

Build default controller object with "controller_class".

デフォルトコントローラーオブジェクトを"controller_class"で構築する。

  # Render template from application
  my $foo = $app->build_controller->render_to_string(template => 'foo');
  # アプリケーションからテンプレートを描画
  my $foo = $app->build_controller->render_to_string(template => 'foo');

build_tx

  my $tx = $app->build_tx;

Build Mojo::Transaction::HTTP object and emit "after_build_tx" hook.

Mojo::Transaction::HTTPオブジェクトを構築し、"after_build_tx"フックを発生させます。

config

  my $hash = $app->config;
  my $foo  = $app->config('foo');
  $app     = $app->config({foo => 'bar', baz => 23});
  $app     = $app->config(foo => 'bar', baz => 23);

Application configuration.

アプリケーションの設定。

  # Remove value
  my $foo = delete $app->config->{foo};
  # 値の削除
  my $foo = delete $app->config->{foo};
  # Assign multiple values at once
  $app->config(foo => 'test', bar => 23);
  # 複数の値を一度に代入する
  $app->config(foo => 'test', bar => 23);

defaults

  my $hash = $app->defaults;
  my $foo  = $app->defaults('foo');
  $app     = $app->defaults({foo => 'bar', baz => 23});
  $app     = $app->defaults(foo => 'bar', baz => 23);

Default values for "stash" in Mojolicious::Controller, assigned for every new request.

"stash" in Mojolicious::Controllerのための デフォルト値です。新しいリクエストのたびに設定されます。

  # Remove value
  my $foo = delete $app->defaults->{foo};
  # 値を取り除く
  my $foo = delete $app->defaults->{foo};
  # Assign multiple values at once
  $app->defaults(foo => 'test', bar => 23);
  # 複数の値を一度に代入
  $app->defaults(foo => 'test', bar => 23);

dispatch

  $app->dispatch(Mojolicious::Controller->new);

The heart of every Mojolicious application, calls the "static" and "routes" dispatchers for every request and passes them a Mojolicious::Controller object.

Mojoliciousアプリケーションの心臓部で、リクエストごとに "static""routes" ディスパッチャを呼び出し、それらに Mojolicious::Controller オブジェクトを渡します。

handler

  $app->handler(Mojo::Transaction::HTTP->new);
  $app->handler(Mojolicious::Controller->new);

Sets up the default controller and emits the "around_dispatch" hook for every request.

デフォルトコントローラを準備し、リクエストごとに"around_dispatch"フックを発行します。

helper

  $app->helper(foo => sub {...});

Add or replace a helper that will be available as a method of the controller object and the application object, as well as a function in ep templates. For a full list of helpers that are available by default see Mojolicious::Plugin::DefaultHelpers and Mojolicious::Plugin::TagHelpers.

コントローラオブジェクトとアプリケーションオブジェクトのメソッドとして、 また、 ep テンプレートの関数として利用できる新しいヘルパーを追加します。 デフォルトで利用可能な、すべてのヘルパーのリストはMojolicious::Plugin::DefaultHelpersMojolicious::Plugin::TagHelpersを見てください。

  # Helper
  $app->helper(cache => sub { state $cache = {} });
  # ヘルパー
  $app->helper(cache => sub { state $cache = {} });
  # Application
  $app->cache->{foo} = 'bar';
  my $result = $app->cache->{foo};
  # アプリケーション
  $app->cache->{foo} = 'bar';
  my $result = $app->cache->{foo};
  # Controller
  $c->cache->{foo} = 'bar';
  my $result = $c->cache->{foo};
  # コントローラー
  $c->cache->{foo} = 'bar';
  my $result = $c->cache->{foo};
  # Template
  % cache->{foo} = 'bar';
  %= cache->{foo}
  # テンプレート
  % cache->{foo} = 'bar';
  %= cache->{foo}

hook

  $app->hook(after_dispatch => sub {...});

Extend Mojolicious with hooks, which allow code to be shared with all requests indiscriminately, for a full list of available hooks see "HOOKS".

フックでMojoliciousを拡張します。 すべてのリクエストで無差別にコードを共有することを可能にします。 利用できるフックのすべてのリストは"HOOKS"を見てください。

  # Dispatchers will not run if there's already a response code defined
  $app->hook(before_dispatch => sub {
    my $c = shift;
    $c->render(text => 'Skipped static file server and router!')
      if $c->req->url->path->to_route =~ /do_not_dispatch/;
  });
  # すでに定義されているレスポンスコードがあれば、ディスパッチャーは実行されません
  $app->hook(before_dispatch => sub {
    my $c = shift;
    $c->render(text => 'Skipped static file server and router!')
      if $c->req->url->path->to_route =~ /do_not_dispatch/;
  });

new

  my $app = Mojolicious->new;
  my $app = Mojolicious->new(moniker => 'foo_bar');
  my $app = Mojolicious->new({moniker => 'foo_bar'});

Construct a new Mojolicious application and call "startup". Will automatically detect your home directory. Also sets up the renderer, static file server, a default set of plugins and an "around_dispatch" hook with the default exception handling.

新しい Mojolicious アプリケーションを構築し、"startup"を呼び出します。 ホームディレクトリを自動的に検知し、現在の実行モードに基いてロギングを 準備します。 レンダラ、静的ディスパッチャ、プラグインのデフォルトセット、 デフォルトの例外を処理する"around_dispatch"フックを発生準備します。

plugin

  $app->plugin('some_thing');
  $app->plugin('some_thing', foo => 23);
  $app->plugin('some_thing', {foo => 23});
  $app->plugin('SomeThing');
  $app->plugin('SomeThing', foo => 23);
  $app->plugin('SomeThing', {foo => 23});
  $app->plugin('MyApp::Plugin::SomeThing');
  $app->plugin('MyApp::Plugin::SomeThing', foo => 23);
  $app->plugin('MyApp::Plugin::SomeThing', {foo => 23});

Load a plugin, for a full list of example plugins included in the Mojolicious distribution see "PLUGINS" in Mojolicious::Plugins.

プラグインをロードします。 Mojoliciousに含まれているすべてのサンプルプラグインのリストは "PLUGINS" in Mojolicious::Pluginsで見ることができます。

server

  $app->server(Mojo::Server->new);

Emits the "before_server_start" hook.

"before_server_start" フックを実行します。

start

  $app->start;
  $app->start(@ARGV);

Start the command line interface for your application. For a full list of commands that are available by default see "COMMANDS" in Mojolicious::Commands. Note that the options -h/--help, --home and -m/--mode, which are shared by all commands, will be parsed from @ARGV during compile time.

アプリケーションのためにコマンドライン インターフェースを開始します。 デフォルトで利用可能なコマンドの完全な一覧については、"COMMANDS" in Mojolicious::Commands を参照してください。 -h/--help, --home-m/--modeのオプションは、 すべてのコマンドで共有され、コンパイルタイムの間に、 @ARGVから解析されることに注意してください。

  # Always start daemon
  $app->start('daemon', '-l', 'http://*:8080');
  # いつもデーモンを開始
  $app->start('daemon', '-l', 'http://*:8080');

startup

  $app->startup;

This is your main hook into the application, it will be called at application startup. Meant to be overloaded in a subclass.

これはアプリケーションにおけるあなたの主要フックです。アプリケーション開始時に 呼び出されます。サブクラスでオーバーロードされます。

  sub startup {
    my $self = shift;
    ...
  }
  sub startup {
    my $self = shift;
  }

ヘルパー

In addition to the "ATTRIBUTES" and "METHODS" above you can also call helpers on Mojolicious objects. This includes all helpers from Mojolicious::Plugin::DefaultHelpers and Mojolicious::Plugin::TagHelpers. Note that application helpers are always called with a new default controller object, so they can't depend on or change controller state, which includes request, response and stash.

上記の "ATTRIBUTES""METHODS" に加えて、Mojoliciousのインスタンスにおいてヘルパーを呼び出すことができます。 これはMojolicious::Plugin::DefaultHelpersMojolicious::Plugin::TagHelpersからすべての ヘルパーを含んでいます。 アプリケーションのヘルパーはいつでも新しいデフォルトコントローラーオブジェクトから呼び出されることに 注意してください。ですのでそれらは、リクエストやレスポンスやスタッシュを含むコントローラーの状態に依存したり、 コントローラの状態を変更することはできません。

  # Call helper
  say $app->dumper({foo => 'bar'});
  # ヘルパーを呼ぶ
  say $app->dumper({foo => 'bar'});
  # Longer version
  say $app->build_controller->helpers->dumper({foo => 'bar'});
  # 長いバージョン
  say $app->build_controller->helpers->dumper({foo => 'bar'});

同梱ファイル

The Mojolicious distribution includes a few files with different licenses that have been bundled for internal use.

Mojolicious 配布には、内部利用のために同梱されている、 異なるライセンスを持つファイルをいくつか含んでいます。

Mojolicious Artwork

  Copyright (C) 2010-2019, Sebastian Riedel.

Licensed under the CC-SA License, Version 4.0 http://creativecommons.org/licenses/by-sa/4.0.

jQuery

  Copyright (C) jQuery Foundation.

Licensed under the MIT License, http://creativecommons.org/licenses/MIT.

prettify.js

  Copyright (C) 2006, 2013 Google Inc..

Licensed under the Apache License, Version 2.0 http://www.apache.org/licenses/LICENSE-2.0.

コード名

Every major release of Mojolicious has a code name, these are the ones that have been used in the past.

Mojolicious のそれぞれのメジャーリリースにはコード名があります; 次のものは過去に使われていたものです。

8.0, Supervillain (U+1F9B9)

7.0, Doughnut (U+1F369)

6.0, Clinking Beer Mugs (U+1F37B)

5.0, Tiger Face (U+1F42F)

4.0, Top Hat (U+1F3A9)

3.0, Rainbow (U+1F308)

2.0, Leaf Fluttering In Wind (U+1F343)

1.0, Snowflake (U+2744)

SPONSORS

  • Stix sponsored the creation of the Mojolicious logo (designed by Nicolai Graesdal) and transferred its copyright to Sebastian Riedel.

    Stix は (Nicolai Graesdal による) Mojolicious ロゴの 作成をスポンサーし、著作権を Sebastian Riedel に移譲しました。

  • Some of the work on this distribution has been sponsored by The Perl Foundation.

    この配布の成果の一部は The Perl Foundation によって スポンサーされました。

PROJECT FOUNDER

Sebastian Riedel, kraih@mojolicious.org

CORE DEVELOPERS

Current members of the core team in alphabetical order:

現在のコアチームメンバー(アルファベット順):

    Jan Henning Thorsen, batman@mojolicious.org

    Joel Berger, jberger@mojolicious.org

    Marcus Ramberg, marcus@mojolicious.org

The following members of the core team are currently on hiatus:

次のコアチームメンバーは現在休止中です:

    Abhijit Menon-Sen, ams@cpan.org

    Glen Hinkle, tempire@cpan.org

CREDITS

In alphabetical order:

アルファベット順に:

    Adam Kennedy

    Adriano Ferreira

    Al Newkirk

    Alex Efros

    Alex Salimon

    Alexander Karelas

    Alexey Likhatskiy

    Anatoly Sharifulin

    Andre Parker

    Andre Vieth

    Andreas Guldstrand

    Andreas Jaekel

    Andreas Koenig

    Andrew Fresh

    Andrew Nugged

    Andrey Khozov

    Andrey Kuzmin

    Andy Grundman

    Aristotle Pagaltzis

    Ashley Dev

    Ask Bjoern Hansen

    Audrey Tang

    Ben Tyler

    Ben van Staveren

    Benjamin Erhart

    Bernhard Graf

    Breno G. de Oliveira

    Brian Duggan

    Brian Medley

    Burak Gursoy

    Ch Lamprecht

    Charlie Brady

    Chas. J. Owens IV

    Chase Whitener

    Christian Hansen

    chromatic

    Curt Tilmes

    Dan Book

    Daniel Kimsey

    Daniel Mantovani

    Danijel Tasov

    Danny Thomas

    David Davis

    David Webb

    Diego Kuperman

    Dmitriy Shalashov

    Dmitry Konstantinov

    Dominik Jarmulowicz

    Dominique Dumont

    Dotan Dimet

    Douglas Christopher Wilson

    Ettore Di Giacinto

    Eugen Konkov

    Eugene Toropov

    Flavio Poletti

    Gisle Aas

    Graham Barr

    Graham Knop

    Henry Tang

    Hideki Yamamura

    Hiroki Toyokawa

    Ian Goodacre

    Ilya Chesnokov

    Ilya Rassadin

    James Duncan

    Jan Jona Javorsek

    Jan Schmidt

    Jaroslav Muhin

    Jesse Vincent

    Johannes Plunien

    John Kingsley

    Jonathan Yu

    Josh Leder

    Kazuhiro Shibuya

    Kevin Old

    Kitamura Akatsuki

    Klaus S. Madsen

    Knut Arne Bjorndal

    Lars Balker Rasmussen

    Lee Johnson

    Leon Brocard

    Magnus Holm

    Maik Fischer

    Mark Fowler

    Mark Grimes

    Mark Stosberg

    Marty Tennison

    Matt S Trout

    Matthew Lineen

    Maksym Komar

    Maxim Vuets

    Michael Gregorowicz

    Michael Harris

    Mike Magowan

    Mirko Westermeier

    Mons Anderson

    Moritz Lenz

    Neil Watkiss

    Nic Sandfield

    Nils Diewald

    Oleg Zhelo

    Olivier Mengue

    Pascal Gaudette

    Paul Evans

    Paul Robins

    Paul Tomlin

    Pavel Shaydo

    Pedro Melo

    Peter Edwards

    Pierre-Yves Ritschard

    Piotr Roszatycki

    Quentin Carbonneaux

    Rafal Pocztarski

    Randal Schwartz

    Richard Elberger

    Rick Delaney

    Robert Hicks

    Robin Lee

    Roland Lammel

    Roy Storey

    Ryan Jendoubi

    Salvador Fandino

    Santiago Zarate

    Sascha Kiefer

    Scott Wiersdorf

    Sergey Zasenko

    Simon Bertrang

    Simone Tampieri

    Shu Cho

    Skye Shaw

    Stanis Trendelenburg

    Stefan Adams

    Steffen Ullrich

    Stephan Kulow

    Stephane Este-Gracias

    Stevan Little

    Steve Atkins

    Tatsuhiko Miyagawa

    Terrence Brannon

    Tianon Gravi

    Tomas Znamenacek

    Tudor Constantin

    Ulrich Habel

    Ulrich Kautz

    Uwe Voelker

    Viacheslav Tykhanovskyi

    Victor Engmark

    Viliam Pucik

    Wes Cravens

    William Lindley

    Yaroslav Korshak

    Yuki Kimoto

    Zak B. Elep

    Zoffix Znet

コピーライト & ライセンス

Copyright (C) 2008-2019, Sebastian Riedel and others.

This program is free software, you can redistribute it and/or modify it under the terms of the Artistic License version 2.0.

SEE ALSO

https://github.com/mojolicious/mojo, Mojolicious::Guides, https://mojolicious.org.