我很难获得使用AngularJS的AJAX调用。我必须管理员,我是AngularJS的完整新手。
这是完整的代码: https://gist.github.com/hendricius/93a646b031d23dba6847#file-angular_pages-js-coffee-L81
错误消息:Uncaught TypeError: Cannot read property 'apply' of null
似乎AJAX事件被截获了。
帮助表示赞赏!
答案 0 :(得分:2)
不要使用jquery的ajax和angularjs。这使得测试变得困难。更方便的方法是$http
$ http。
$http.post("/adwords_tools/keyword_estimates", _.map(keywords, (kw)-> kw.name)).success (response) ->
console.log response
模块
所以你的例子看起来像这样(我假设你发帖,没有经过测试,也没有精通CoffeeScript;)):
{{1}}