我们还可以通过进行一些优化:比如当未读新邮件数大于原来的邮件数时,增加提示信息等。 提示信息这里使用 jetpack.notifications.show(options) 方法,options 参数有三个属性:title (String):通知的标题;icon (URL):通知 icon 的 URL;body (String):通知的主题内容。
优化后的代码如下:
function update(widget) { var widget = $(widget), notify = function(msg) { // 定义通知的公用方法 jetpack.notifications.show({ title: "Gmail", body: msg, icon: "http://mail.google.com/mail/images/favicon.ico" }); }; $.get("https://mail.google.com/mail/feed/atom", function(xml) { var el = $(xml).find("fullcount"); // 记录未读新邮件数的节点 if(el){ var newcount = parseInt(el.get(0).textContent); if(newcount > count) { // 如果未读新邮件数大于原来的邮件数,则提示来自哪里 var sender = $(xml).find("name").get(0).textContent; notify("New message from "+sender); } count = newcount; widget.find("#count").text(count); //赋给指定的元素 } else { //如果未登录,提示登录 widget.find("#count").text( "Login" ); notify("Please login to Gmail"); } }); }
|