ACTION METHOD Meaning in Japanese - translations and usage examples

['ækʃn 'meθəd]
['ækʃn 'meθəd]
アクションメソッド
actionメソッドを

Examples of using Action method in English and their translations into Japanese

{-}
  • Colloquial category close
  • Ecclesiastic category close
  • Computer category close
  • Programming category close
Trouble and Action Method.
既知の不具合と対処方法
The action method creates a Continuation and returns it.
このアクションメソッドは、Continuationを作成して返します。
Implements the action methods.
アクションメソッドを実装。
If the action method was not found.
アクションメソッドが見つからなかった場合は、。
In scopt3, immutable parsing is supported using action method:.
Scopt3において、不変パーシングはactionメソッドを用いて行われる:。
Need to define action methods that the controller may call.
最低限、コントローラがコールするアクションメソッドを定義しなければなりません。
These objects are then sent to the controller class's action method.
それからこれらのオブジェクトは、コントローラクラスのアクションメソッドへ送られる。
If the action method was not found, forward to the index action..
アクションメソッドが見つからなかった場合は、indexアクションに転送します。
At the minimum, you will need to define action methods that the controller may call.
最低限、コントローラがコールするアクションメソッドを定義しなければなりません。
Usually, you will notwant to manipulate the Response content directly in the action method.
通常はResponseの内容をアクションメソッドで直接操作したいとは思わないでしょう。
The value of the tooltip and the action method can then be used within the screen.
TooltipとそのActionメソッドのvalueはスクリーンに使用されます。
Note: You do not need to specify thefull controller namespace when using the action method.
注目:actionメソッドを使うときにも、コントローラーの完全な名前空間を指定する必要はありません。
The action helper and URL::action method are also affected by this change:.
ActionヘルパとURL::actionメソッドもこの変更の影響を受けます。
The actual dispatching process consists of instantiating the controller class andcalling the action method in that class.
実際のディスパッチ処理では、コントローラクラスのインスタンスの作成とそのクラスのアクションメソッドのコールを行います。
It is composed of an action method called executeIndex and a template file called indexSuccess. php.
これはexecuteIndexと呼ばれるアクションメソッドとindexSuccess。
Goagen uses that description to generate the corresponding Go struct that the action method receives in its request context.
Goagenはその記述を利用して、アクション・メソッドがそのリクエスト・コンテキストとして受け取るのに対応するGoの構造体を生成します。
To add an action method to the page controller, create it as a method named action*() with any parameters it needs:.
ページコントローラーにアクションメソッドを追加するには必要な引数を追加したaction*()メソッドを作成します。
It is almostalways the case that you will collect data inside the action method, then hand off to a rendering system to present that data.
ほとんどの場合は、アクションメソッドの内部でデータを集めて、表示のためにレンダリングシステムにデータを渡します。AbstractPageは$dataプロパティとRendererを提供します。
If your action method contains camelCasing, please remember that this will result in'-' separated words when determining the view script file name.
アクションメソッド名がcamelCase方式の場合、ビュースクリプトのファイル名では単語が'-'で区切られることに注意しましょう。
This is defined as the default action behavior,so if you omit the return statement in an action method, symfony will also look for an actionNameSuccess.
これはアクションのデフォルトのふるまいとして定義されているので、アクションメソッド側でreturn文が省略されると、symfonyはactionNameSuccess。
The name of the action method is always executeXxx(), where the second part of the name is the action name with the first letter capitalized.
アクションメソッドの名前はつねにexecuteXxx()で、名前の2パート目に当たる大文字で始まるXxxの部分が、アクションの名前になります。
Dispatching is the process of pulling the controller and action from the request object andmapping them to a controller file(or class) and action method in the controller class.
ディスパッチとは、コントローラとアクションをリクエストオブジェクトから受け取り、それを実際のコントローラファイル/クラスとメソッドに対応させる処理のことです。
The appropriate way to handle non-existent action methods should you wish to route them to a default action is using__call():.
存在しないアクションメソッドを扱うには、__call()を使用してデフォルトのアクションに誘導します。
The convention to name actions executeActionName()(in the case of an sfActions class) or execute()(in the case of an sfAction class)guarantees that symfony will find the action method.
アクション名をexecuteActionName()(sfActionsクラスの場合)もしくはexecute()メソッド(sfActionクラスの場合)executeとする規約によってsymfonyがアクションメソッドを探すことが保証されます。
To use this feature you need tosupply a user defined action to the ShelfLifeCheck- this action method is passed the expiration token where you will be able to retrieve these properties.
この機能を使用するには、ShelfLifeCheckにユーザー定義の操作を提供する必要があります。この処置法は、これらのプロパティを取得できる期限切れトークンに渡されます。
If you wish to have your controller class or action method name have multiple MixedCasedWords or camelCasedWords, you will need to separate those words on the url with either a'-' or'.' though you can configure the character used.
コントローラクラスやアクションメソッドの名前にMixedCaseあるいはcamelCaseの単語を複数使用したい場合は、 URL上での単語の区切り文字として'-'あるいは'.'のいずれかを使用しなければなりません(とは言え、ここで使用する文字は変更できます)。
So for example if a path parameter called ID is defined in the design asbeing of type Integer the corresponding controller action method accepts a context data structure which exposes a field named ID of type int.
たとえば、IDというパス・パラメータがデザインでInteger型として定義されている場合、対応するコントローラのアクションメソッドはint型のIDという名前のフィールドを公開するコンテキストデータ構造を受け取ります。
One of the main application for types defined that way is to describe the request payload of a given action. The request payload describes the shape of the request body.goagen uses that description to generate the corresponding Go struct that the action method receives in its request context. Payloads may be defined inline as follows:.
このように定義されたタイプの主な利用用途は、与えられたアクションのリクエスト・ペイロードを記述することです。リクエスト・ペイロードはリクエスト・ボディの形を特徴付けます。goagenはその記述を利用して、アクション・メソッドがそのリクエスト・コンテキストとして受け取るのに対応するGoの構造体を生成します。ペイロードは、次のようにインラインで定義できます:。
Results: 28, Time: 0.038

Word-for-word translation

Top dictionary queries

English - Japanese