$ .poll
允许您轮询AJAX呼叫,直到满足您的预定义条件。 在操作完成之前显示微调框的理想选择。
建立
API
/*
url: Points to the GET endpoint from where to poll
interval_in_milliseconds: Interval between calls to the url
terminator_callback: A callback function that returns true to indicate end
心血来潮想为自己的小项目做一个提醒系统,譬如私信,评论等消息都能及时传递过来。由于道行尚浅,网上那些长轮询对于我略微复杂,于是觉得还是自己写一写试试比较好。
我的思路是,单独在数据库中建一个提醒表,表主要由接收者的id和消息类型两个字段组成
/* 前台提醒表 */
CREATE TABLE IF NOT EXISTS notification(
id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, -- 主键自增
mid INT