Coffeescript没有调用函数

时间:2015-07-08 19:39:10

标签: javascript coffeescript

我在JS中有一个函数。当我在控制台上运行它时,我得到了预期的结果

function hello(data) {
    $.foo = data;
}

$.ajax({
    type: "GET",
    url: "http://somesite.com/api?callback=hello&AssetId=123&returnFormat=json",
    dataType: "jsonp"
});

现在当我把它转换成咖啡时

hello = (data) ->
  $.foo = data
  return

$.ajax
  type: 'GET'
  url: 'http://somesite.com/api?callback=hello&AssetId=123&returnFormat=json'
  dataType: 'jsonp'

没有任何反应

有人可以告诉我这里我做错了吗

0 个答案:

没有答案