具有不同 ISBN 的书籍的俱乐部重印本
我正在使用 Google Books API 让用户搜索特定书籍并显示结果。问题是同一本书的不同版本有不同的 ISBN。有什么方法可以根据 API 返回的信息来合并这些重印吗?
我想这样做是因为我的数据库中有一些版本的 ISBN。因此,当用户搜索一本书时,我想将所有结果合并起来并将它们显示为一个结果。
I am using Google Books API to let a user search for a particular book and display the results. The problem is that different editions of the same book have different ISBNs. Is there any way to club these reprints, based on the information the API returns ?
I want to do this is because I have the ISBNs of some of the editions in my database. So when the user searches for a book, I would like to clubs all the results and display them as one result.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不熟悉“俱乐部”一词的这种用法,但您似乎想要将具有相同 ISBN 的书籍分组。我不知道如何仅通过 Google 图书执行此操作,但您可以使用精彩的 xISBN 网络服务,用于查找图书的备用 ISBN。
点击类似的 URL
即可获得以下响应:
其中首先包含原始 ISBN,然后包含 WorldCat 已知的所有替代名称。然后您可以使用替代项进行分组。
I'm not familiar with this use of the word "club", but it appears that you want to group books that have the same ISBN. I don't know how to do this solely with Google Books, but you can use the wonderful xISBN web service to look up alternate ISBNs for books.
Hit a URL like
to get this response:
Which includes first the original ISBN and then all alternates known to WorldCat. Then you can use the alternates for grouping.