Skip to content

Instantly share code, notes, and snippets.

@yuppism
Created September 22, 2011 04:25
Show Gist options
  • Save yuppism/1234034 to your computer and use it in GitHub Desktop.
Save yuppism/1234034 to your computer and use it in GitHub Desktop.
closureサンプルコード
var popopopoon = function() {
var nextId;
return function('引数') {
$.ajax({
url:'',
data: {
hoge: nextId
}
success: function(data) {
//ここで、apiのレスポンスから次のapiに渡す値を取得
nextId = data.nextId;
}
);
};
};
var readMore = popopopoon();
readMore("引数");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment