所以来自java堆栈,可以使用任何java-ee堆栈(jax-rs,jersey,restlet,rest-easy)创建子资源。
java示例代码段可能看起来像这样。
@Path('library')
public class Library{
// some get post resource endpoint
@Path('books')
BookResource bookSubResource() {}
}
所以如果要在django rest框架中实现这一点。
考虑到我们有资源,最好的方法或模式是什么
APIView呼叫LibraryAPIView
和BookAPIView
由于