1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

インナーフォーム(Inner Form)

Last updated at Posted at 2014-03-12

Web Application OSでは、変換前のHTMLが持つ特殊な情報として
インナー○○○という考え方があります。

インナーフォームはサーバ内で擬似的に送信されるフォーム、
インナースクリプトはサーバ内で実行されるスクリプトといった感じです。
この項ではインナーフォームについての説明をします。

例1
<form id="table_name" data-wao-action="/table_name/list/">
  <input type="hidden" name="author_id" value="_SES.member.id">
</form>
例2
<form id="table_name" data-wao-action="/table_name/list/">
  <input type="hidden" name="author_id" value="_SES.member.id">
</form>
属性名 指定値
id 取得したデータの識別子(テーブル名またはalias名)
data-wao-action 対象のテーブル名とメソッドをURL化したもの
  • list
    ** 特定の条件でデータの一覧を取得する
  • detail
    ** idを指定してデータを一件取得する
  • insert
    ** データを新規登録する
  • update
    ** 指定の対象データを任意の値で更新する
  • delete
    ** 指定の対象データを削除する
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?