This commit updates the handling of the publicationTitle in the KeyExampleFactory class. It now checks the item type and retrieves the appropriate field value for the publication title. If the item type is journalArticle, it retrieves the publicationTitle field. If the item type is conferencePaper, it retrieves the conferenceName field. If the conferenceName field is not available, it retrieves the proceedingsTitle field. The retrieved value is then encoded using encodeURIComponent().
会议论文不应该用简单用
publicationTitle
. 这里选择的处理办法是先使用conferenceName
, 如果没有的话再用proceedingTitle
.This commit updates the handling of the
publicationTitle
in theKeyExampleFactory
class. It now checks the item type and retrieves the appropriate field value for the publication title. If the item type isjournalArticle
, it retrieves thepublicationTitle
field. If the item type isconferencePaper
, it retrieves theconferenceName
field. If theconferenceName
field is not available, it retrieves theproceedingsTitle
field. The retrieved value is then encoded usingencodeURIComponent()
.