How do I do the following in CoffeeScript?

  $( function() {
    $('input#username').keyup( function() {
      var username = $('input#username').val();
      url = '/users/check_username/';
      params = { username : username };
      $.get(url, params, function(response){ markUsername(response); }, "json");
    });
  })
link|improve this question

75% accept rate
feedback

3 Answers

up vote 14 down vote accepted

Here's another slightly condensed way to write it:

$ ->
  $('input#username').keyup ->
    username = $(this).val()
    callback = (response) -> markerUsername response
    $.get '/users/check_username/', {username}, callback, 'json'

Note the lack of parens, and the shorthand "{username}" object literal.

link|improve this answer
2  
This is the nice canonical way to write it in CoffeeScript - from the person that brought you CoffeeScript! This example illustrates a number of CoffeeScript's features that I think make CoffeeScript such a nice little language to work with. – yfeldblum Jan 31 '11 at 15:33
Thanks for the answer and thanks for coffeescript. I think my difficulty in grasping coffeescript is more about my lack of javascript knowledge. But if I could make a suggestion, how about explaining on your coffeescript page the strange looking function definitions that start with func_name = function(x). Knowing that early on would have saved me some trouble. – Tum Feb 1 '11 at 3:20
feedback

This is a way:

$(->
    $('input#username').keyup(->
        username = $('input#username').val()
        url = '/users/check_username/'
        params = {username: username}
        $.get(url, params, (response)->
            markerUsername(response)
        , "json")
    )
)

Some of these parenthesis can be omitted, but in my opinion, they help with understanding the code flow (at least in this situation).

I recommend fiddling around with coffeescript here http://jashkenas.github.com/coffee-script/ (use the "try coffeescript") button. The language is very easy to learn.

link|improve this answer
thanks so much. maybe i'm just dense or something but for the life of me i could not figure this out even after looking at all the examples i could find online. – Tum Jan 31 '11 at 11:15
feedback

This is the best generic pattern I've come up with so far:

$.ajax '/yourUrlHere',
  data :
    key : 'value'
  success  : (res, status, xhr) ->
  error    : (xhr, status, err) ->
  complete : (xhr, status) ->

It compiles down to:

$.ajax('/yourUrlHere', {
  data: {
    key: 'value'
  },
  success: function(res, status, xhr) {},
  error: function(xhr, status, err) {},
  complete: function(xhr, status) {}
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.