0

我正在使用 later.js(流星包,voidale:later-js-tz@1.1.9)来安排事件,使用 later.parse.text() 解析器。我可以毫无问题地在给定的工作日安排每周活动,字符串如“周一 11:00”。

但是我在尝试“每个月的第二个星期一的 11:00”之类的东西时遇到解析错误。

问:有没有办法在 later.js 中做到这一点,或者如果没有,是否有可用的 javascript 库支持这个?

谢谢。

4

1 回答 1

0

I found moment-recur, which supports this nth-weekday of a month in its API, but doesn't have a text parser.

I then used PEGjs to build a text parser which outputs the necessary parameters, which I use in a straightforward way to call the moment-recur API.

于 2017-03-08T16:17:51.713 回答