我正在使用Tumblr 徽章脚本在我的网站上嵌入我的 Tumblr 提要。最初,没有帖子标题支持,所以我添加了此代码。
postTitle = document.createElement("h3");
postTitle.className = "tumblr-post-title";
postTitle.innerHTML = post["regular-title"];
listItem.appendChild(postTitle);
这将显示帖子标题,但在没有标题的帖子上显示“未定义”。有没有办法解决这个问题?谢谢