我有以下语法:
我在第6行收到以下错误:
Uncaught SyntaxError: Unexpected token {
我在done()上阅读了api文档,我看不出我在这里做错了什么。
答案 0 :(得分:5)
$.post(path).done(funtion(data) { ....
^----notice any missing characters here, a "c" perhaps?
JS试图调用一个名为“funtion”的函数,这意味着{
之后的语法是非法的。由于它首先解析了语法错误,因此无法告诉您“功能”不存在。
答案 1 :(得分:3)
你写了funtion
而不是function
。
$.post(path).done(function(data) { console.log(data) });