我正在使用此处找到的本教程学习Symfony REST http://voryx.net/rest-apis-with-symfony2-the-easy-way/
我已经到了必须在项目的根控制台上使用此命令进行PUT的程度
curl -i -H "Content-Type: application/json" -X POST -d '{"name" : "Test Post", "description" : "This is a test post"}' http://localhost:8000/app_dev.php/api/posts
当我执行上面的命令时,我在控制台上出现此错误
curl: (3) [globbing] unmatched close brace/brac
curl: (7) Failed connect to localhost:8000; No error
请帮助我,我正在推动自己学习Symfony REST