coffeekup icon indicating copy to clipboard operation
coffeekup copied to clipboard

Zappa Example is Outdated

Open zeta0134 opened this issue 13 years ago • 0 comments

With Zappa version 3, the syntax for the get and view functions has changed. Double check my syntax, this is just a quick conversion, but I think it should look like this:

@get '/': ->
  @render 'index',
    franks: ['miller', 'oz', 'sinatra', 'zappa']

@view index: ->
  for name in @franks
    a href: "http://en.wikipedia.org/wiki/Frank_#{name}", -> name

Basically, all the "magic" functions are attached to @ now, and sending variables to render functions is now done (by default) as an object parameter to the render function. Hooray for closures not being broken anymore. :D

zeta0134 avatar Nov 01 '11 14:11 zeta0134