Core
Native
Class
Element
Utilities
Fx
Request
Plugins
- Fx.Slide
- Fx.Scroll
- Fx.Elements
- Drag
- Drag.Move
- Color
- Group
- Hash.Cookie
- Sortables
- Tips
- SmoothScroll
- Slider
- Scroller
- Assets
- Accordion
JSON形式でJavaScriptオブジェクトを送受信するためのリクエストラッパーです。
var myJSONRemote = new Request.JSON([options]);
onSuccess(responseJSON, responseText)
//このコードはGETリクエストでデータオブジェクトを送信し、受け取ったデータをアラートします。 var jsonRequest = new Request.JSON({url: "http://site.com/tellMeAge.php", onComplete: function(person){ alert(person.age); //Alerts "25 years". alert(person.height); //Alerts "170 cm". alert(person.weight); //Alerts "120 kg". }}).get({'firstName': 'John', 'lastName': 'Doe'});
このドキュメントはMooToolsのドキュメントを元に高橋文樹が翻訳(ちょっと改変)しました。
本家と同じく、Attribution-NonCommercial-ShareAlike 3.0ライセンスで公表されています。