从 kue 文档中,创建队列和添加作业很容易,但我无法了解作业的存储方式
var kue = require('kue')
jobs = kue.createQueue();
添加工作
jobs.create('email', {
title: 'welcome email for tj'
, to: 'tj@learnboost.com'
, template: 'welcome-email'
}).priority('high').save();
这个例子很容易理解,但是,如果我需要更多的选项,例如在例子中,比如添加一个广告选项 - ,ad: 'we are the best'
jobs.create('email', {
title: 'welcome email for tj'
, to: 'tj@learnboost.com'
, ad: 'we are the best'
, template: 'welcome-email'
}).priority('high').save();
我该怎么办?