请关注我,因为Rails指南选择甚至不在其API部分中提及创建操作。我的目标是构建一个RESTFUL API,从中可以创建内容。以下是$ curl myapp
<form class="new_blog" id="new_blog" action="/blog" accept-charset="UTF-8" data-remote="true" method="post"><input name="utf8" type="hidden" value="✓" />
<label for="blog_input">Input a String</label>
<textarea class="input-field" name="blog[input]" id="blog_input">
</textarea>
<input type="submit" name="commit" value="Create Blog" />
</form>
我想通过curl发布内容......或者......我可以通过Rspec以某种方式测试这个吗?
目标是我有一个RESTFUL API,允许通过HTTP请求创建内容,然后提供HTTP响应。