问题标签 [isbn]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
1 回答
211 浏览

php - 如何更改此亚马逊产品广告 API PHP 连接以搜索 ISBN


我正在使用 PHP 类与亚马逊产品广告 API 进行交互。我需要能够查找书籍(ISBN 编号),但是这个类似乎不支持它。我试图修改关键字函数以接受 ISBN 号,但我没有运气。谁能指出我正确的资源方向来学习如何做到这一点,或者如果它是一个简单的修复向我展示它?先感谢您

0 投票
1 回答
908 浏览

php - 从 ISBN API 读取数据并保存在 php 中

有人可以帮我如何在带有 XML 或 json 的 php 中使用 ISBN api 来阅读可以稍后保存在 php 变量中的书籍详细信息。谢谢你。

0 投票
1 回答
5654 浏览

web-services - 亚马逊的简单 ISBN 预订

我试图找到一种简单的方法来在亚马逊上按 ISBN 查找书名。我正在协助我孩子的学校做一个简单的盘点。我的测试集中的很多书籍都没有使用其他来源(尝试过 Google、WorldCat 和 ISBN DB)找到。

示例 ISBN:0153527692

我已经阅读了有关“产品广告 API”的信息,但这似乎有点矫枉过正——我还缺少什么更基本的东西吗?

如果我通过亚马逊网站进行搜索,它就会出现,这就是我考虑亚马逊的原因 - 我也对其他想法持开放态度......

0 投票
0 回答
49 浏览

python - 检查输入的值是否为有效的 13 位 ISBN 的代码。它有什么问题???#Interpreter 返回列表索引超出范围

  1. 解释器返回“回溯(最近一次调用最后一次):文件“python”,第 9 行,在 IndexError:列表索引超出范围”
0 投票
2 回答
1213 浏览

isbn - ISBN10 和 ISBN13 应该使用哪种数据类型?

根据 ISBN10 的算法,校验位可以是 X,也就是说,它可能不是数字。但谷歌 API 的输出:https ://www.googleapis.com/books/v1/volumes?q=isbn: xxx 对 ISBN10 和 ISBN13 使用整数类型。为什么?

PS:以下是google API输出的一部分:

0 投票
2 回答
2292 浏览

java - Calculating the ISBN Number check digit using Java

I'm trying to calculate any ISBN-13 Number's Check Digit, I'm not too worried if the ISBN number is valid or invalid, but what I've been trying to do is get the code to work. There are obviously flaws in my interpretation of the algorithm, suggestions on how to fix it are welcome but the primary problem is receiving user input that is too large for an integer variable but I also want to avoid the decimals of the double value.

I already tried to use the BigDecimal and BigNumber but I simply don't have enough experience to be able to understand them completely. This is the algorithm to find d13 (the Check Digit): 10-(d1 +3d2 +d3 +3d4 +d5 +3d6 +d7 +3d8 +d9 +3d10 +d11 +3d12)%10.

The Code is a mess I know. I've used this website as a reference to what I want to do and I've been using this ISBN number as my practice: 9780132130806.

Again my question is how can I print the final ISBN number without decimals and how can I possibly fix my algorithm? (I'd also really appreciate any tips on a website that helps with teaching JOption as that is the prefered method i use because it looks a bit cleaner to me than using the scanner)


0 投票
2 回答
11357 浏览

mysql - MySQL 数据集中 ISBN10 和 ISBN13 的最佳数据类型是什么

对于我目前正在构建的应用程序,我需要一个数据库来存储书籍。books 表的模式应包含以下属性:

id, isbn10, isbn13, title, summary

我应该为 ISBN10 和 ISBN13 使用哪些数据类型?我的第一个想法是大整数,但我读过一些未经证实的评论,说我应该使用 varchar。

0 投票
4 回答
2688 浏览

python - python isbn 13位验证

我需要编写一个验证 13 位 ISBN 的函数。它需要以 978 或 979 开头,以单个数字结尾,其余部分至少需要 1 位长度。我需要一些帮助才能完成这项工作,我不明白为什么它永远不会返回 true

0 投票
1 回答
70 浏览

excel - Applescript 没有输入到 excel。应该很简单吧?

它真的很简单。这是我的代码中正在执行该操作的部分。问题是我试图从网站上获取的信息没有输入到 Excel 文档中。

这就是网站上的代码的样子。我想要的只是输入的 53.25 美元。

我认为这是我没有看到的非常基本的东西。最初粘贴的信息是isbns。例如 9781464139055。

谢谢!

0 投票
2 回答
7584 浏览

java - JAVA ISBN-10 编号:查找第 10 位

问题 :

ISBN-10 由 10 位数字组成:d1,d2,d3,d4,d5,d6,d7,d8,d9,d10。最后一位数字 d10 是校验和,使用 以下公式从其他九位数字计算得出:

(d1 * 1 + d2 * 2 + d3 * 3 + d4 * 4 + d5 * 5 + d6 * 6 + d7 * 7 + d8 * 8 + d9 * 9) % 11

如果校验和为 10,则根据 ISBN-10 约定,最后一位数字表示为 X。

编写一个程序,提示用户输入前 9 位数字并显示 10 位数字 ISBN(包括前导零)。您的程序应该将输入读取为整数。

以下是示例运行:

输入 ISBN 的前 9 位整数:013601267

ISBN-10 编号为 0136012671

我的代码:

问题: 我是学习 java 的新手,因此我在尝试解决这个问题时遇到了麻烦。有人可以告诉我哪里出错了,因为我没有得到预期的结果。谢谢你。