Coffeescript中的switch case语句内的范围

时间:2012-06-26 07:22:41

标签: coffeescript handlebars.js

我在Rails 3.2 jquery移动应用程序中使用Handlebar。

我正在尝试在Coffeescript方法中编写一个switch case语句,如

Handlebars.registerHelper 'status', (blog) ->
  switch(parseInt(blog.status))
    when [0..20]
      status = "active"
    when [20..40]
      status = "Moderately Active"
    when [40..60]
      status = "Very Active"
    when [60..100]
      status = "Hyper Active"
  return status

我没有得到任何结果。如何在何时使用范围。请建议

2 个答案:

答案 0 :(得分:16)

您的switch在评论中不会用作Cygal注释(例如,请参阅issue 1383)。 switch只是一个美化的if(a == b)结构,您需要能够说出以下内容:

a = [1,2,3]
switch a
...

并在数组上switch时使用它。 CoffeeScript的设计者认为添加一个(脆弱的)特殊情况来处理数组(这些都是[a..b])特别不值得。

您可以使用if

执行此操作
Handlebars.registerHelper 'status', (blog) ->
  status = parseInt(blog.status, 10)
  if 0 <= status <= 20
    'Active'
  else if 20 < status <= 40
    'Moderately Active'
  else if 40 < status <= 60
    'Very Active'
  else if 60 < status <= 100
    'Hyper Active'
  else
    # You need to figure out what to say here

或者像这样短路return

Handlebars.registerHelper 'status', (blog) ->
  status = parseInt(blog.status, 10)
  return 'Something...'      if status <=   0
  return 'Active'            if status <=  20
  return 'Moderately Active' if status <=  40
  return 'Very Active'       if status <=  60
  return 'Hyper Active'      if status <= 100
  return 'Something else'    # This return isn't necessary but I like the symmetry

请注意,您需要为三个特殊情况添加字符串:

  1. status < 0
  2. status > 100
  3. statusNaN。这种情况通常属于最终的“它不小于或等于100”分支,因为NaN => nNaN <= n对所有n都是假的。
  4. 是的,你绝对肯定状态总是在假定的范围内。另一方面,不可能的事情一直发生在软件上(因此comprisrisks邮件列表)并且没有充分的理由留下容易填充的漏洞。

    还要注意在parseInt调用中添加了radix参数,你不会想要一个前导零来搞乱一些东西。是的,基数参数是可选的,但它确实不应该是,并且您的手指应该自动将, 10添加到您进行的每个parseInt来电。

答案 1 :(得分:8)

mu is too short's answer添加一点点,您可以将其第二个代码段转换为switch表达式:

Handlebars.registerHelper 'status', (blog) ->
  status = parseInt(blog.status, 10)
  switch
    when status <= 0   then 'Something...'      
    when status <= 20  then 'Active'
    when status <= 40  then 'Moderately Active'
    when status <= 60  then 'Very Active'
    when status <= 100 then 'Hyper Active'
    else 'Something else'

这基本上相当于在JavaScript中执行switch (true)(尽管CS编译器会生成switch (false) statement with the negated conditions以确保表达式的布尔结果......我认为。)


switch超范围不起作用的原因是CS中的范围文字表示普通的旧JS数组(尽管编译器在执行for i in [1..something]之类的操作时会做一些优化技巧),所以当他们在switch内找到时,他们只会被like normal array values处理:

// Generated JS for question's CS code:
switch (parseInt(blog.status)) {
  case [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20]:
    status = "active";
    break;
  case [20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40]:
    status = "Moderately Active";
    break;
  case [40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60]:
    status = "Very Active";
    break;
  case (function() {
      _results = [];
      for (_i = 60; _i <= 100; _i++){ _results.push(_i); }
      return _results;
    }).apply(this):
    status = "Hyper Active";
}

switch语句中的值基本上使用case与每个===值进行比较,switch仅适用于基元,而不适用于数组(即使它适用于数组,也适用于数组)将测试数组相等性,而不是case ed数组中包含{{1}} ed值。