介绍
这里会有一些简单的例子带大家更好的快速入门。
监听库存
javascript
function main() {
const {request, response, job} = RapJob
// 不通知
if (response.status !== 200) {
return false
}
const stock = JSON.parse(response.body).stock
if (typeof stock !== "number" || stock <= 0) {
return false
}
// 自定义通知内容
const notification = {
title: `XXX 有库存啦`,
content: `XXX 库存剩余数量: ${stock}`,
}
return {
notification: notification
}
}
监听余额
javascript
function main() {
const {request, response, job} = RapJob
// 不通知
if (response.status !== 200) {
return false
}
const {currentCount, maxCount} = JSON.parse(response.body).stock
// 自定义通知内容
const notification = {
title: `XXX 剩余额度`,
content: `XXX 库存剩余数量: ${currentCount}/${maxCount}`,
}
return {
notification: notification
}
}