2

crontab 値 (分/時間/月/日) のテキスト入力を含む Web フォームがあり、選択した crontab タスク実行の次の日付をユーザーに表示したいと考えています。たとえば、私は値を持っています

20 15 15 * *、期待される結果は次のようになります。"Next run: 15.06.2013, 15-20"

適切なJavaScriptライブラリを知っていますか?

4

1 に答える 1

6

Later.jsというライブラリがあります

このように動作します

<!DOCTYPE html>
<html>
<body>
</body>

<script src="https://raw.github.com/bunkat/later/master/later.min.js" type="text/javascript"></script>
<script type="text/javascript">
// create the desired schedule


// calculate the next 5 occurrences with a minimum resolution of 60 seconds, using local time
var s = cronParser().parse('* */5 * * * *', true);
var results = later(60, true).get(s, 20);

document.write('<p>Next Run:' + results[1].toLocaleString() + '</p>');


</script>
</html>

詳細については、を確認してください。

よろしくお願いします :)

于 2013-05-22T11:42:11.793 に答える