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.
假设我们显示项目列表/foo/并支持分页/foo&page=2等等。用户/foo&page=2通过 ajax 请求不同的页面。
/foo/
/foo&page=2
/foo
/foo&page=1
我想#1 更好,但我想我害怕打破 DRY。 您如何处理这个问题,即,为第一页提供完整内容,为其他页面提供部分 ajax 请求,而不破坏 DRY?