我尝试使用由django / python创建的Web服务设置ubuntu服务器,任何人都有资源/教程/示例代码
答案 0 :(得分:6)
还有piston,它是用于创建RESTful API的Django框架。它有一个轻微的学习曲线,但很适合Django。
如果你想要更轻量级的东西,Simon Willison非常nice snippet我之前使用过很好的HTTP方法模型:
class ArticleView(RestView):
def GET(request, article_id):
return render_to_response("article.html", {
'article': get_object_or_404(Article, pk = article_id),
})
def POST(request, article_id):
# Example logic only; should be using django.forms instead
article = get_object_or_404(Article, pk = article_id)
article.headline = request.POST['new_headline']
article.body = request.POST['new_body']
article.save()
return HttpResponseRedirect(request.path)
Jacob Kaplan-Moss在Worst Practices in REST上发表了一篇很好的文章,可以帮助你远离一些常见的陷阱。
答案 1 :(得分:1)