Skip to content

Commit b8b915f

Browse files
committed
fix: 不支持中文条目,缺失URL信息条目的引用数和期刊信息查找
1 parent 5ffa70e commit b8b915f

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

chrome/content/scripts/jasminum.js

+13-3
Original file line numberDiff line numberDiff line change
@@ -387,10 +387,15 @@ Zotero.Jasminum = new function () {
387387
var item = items.shift();
388388
if (["patent", "webpage"].includes(Zotero.ItemTypes.getName(item.itemTypeID))) {
389389
this.Utils.showPopup(
390-
"期刊、引用抓取完毕",
390+
"条目类型不支持",
391391
`${Zotero.ItemTypes.getName(item.itemTypeID)}类型条目不需要抓取`
392392
)
393-
} else {
393+
} else if (item.getField("title").search(/[_\u4e00-\u9fa5]/) === -1) {
394+
this.Utils.showPopup(
395+
"条目类型不支持",
396+
`非中文条目`
397+
)
398+
} else if (item.getField("url")) {
394399
let url = item.getField("url");
395400
let resp = await Zotero.HTTP.request("GET", url);
396401
let html = this.Utils.string2HTML(resp.responseText);
@@ -427,6 +432,11 @@ Zotero.Jasminum = new function () {
427432
Zotero.debug("** Jasminum cite number: " + cssci);
428433
item.setField("extra", extraData.trim());
429434
await item.saveTx();
435+
} else {
436+
this.Utils.showPopup(
437+
"条目抓取失败",
438+
"缺失条目 URL 信息"
439+
);
430440
}
431441

432442
if (items.length) {
@@ -456,4 +466,4 @@ Zotero.Jasminum = new function () {
456466
var items = ZoteroPane.getSelectedItems();
457467
for (var item of items) { await this.setLanguage(item) }
458468
};
459-
};
469+
}

0 commit comments

Comments
 (0)