Page Contents

The following pages are tagged with

TitleExcerpt
アプリケーションロジックの追加 アプリケーションを構築するとき、一般的に、データを処理したり、クライアントからの要求に応じてその他の処理を行うように、独自のロジックを実装する必要があります。 LoopBackでは、3通りの方法があります。 モデルにロジックを追加する - リモートメソッド・リモートフック・操作フックを追加します。 起動スクリプトを定義する - アプリケーション起動時に実行されるスクリプトを(/server/bootディレクトリ内に)作成します。 ミドルウェアを定義する - 独自の ミドルウェア を追加します。
Adding remote methods to built-in models To add a remote method to a  built-in model, you can either  extend the model and add the remote method to your new model, or add it in a boot script, as described here by way of example. This example adds a “greet” method the built-in User model....
コネクタフック コネクタフックは、コネクタの動作によって起動されます。
操作フック 操作フックは、作成・読取・更新・削除に関する高レベルの操作を実行するすべてのメソッドによって起動されます。LoopBackバージョン3.0の操作フックには多くの変更が加えられました。
リモートフック リモートフックは、モデルのリモートメソッドが実行される前か、実行された後に動きます。
リモートメソッド リモートメソッドは、独自のRESTエンドポイントを通じて公開される、モデルの静的メソッドです。
Tutorial: Adding application logic Demonstrates remote methods, remote hooks, model operation hooks, boot scripts, middleware, and using the email connector in a LoopBack application.