Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个简单的 Sinatra 应用程序。当我做:
curl localhost:4567/api/shows?limit=1&page=2
我只在 Sinatra 日志中看到这个:
{"limit"=>"1"}
我究竟做错了什么?
我需要在 curl 中的 url 周围加上引号。所以它会是:
curl 'localhost:4567/api/shows?limit=1&page=2'
原因:&意味着在后台运行您之前输入的任何命令作为命令,这就是它不起作用的原因。
&