使用javafx创建日历

时间:2015-10-22 12:56:15

标签: java javafx calendar

我对如何开始我面前的这个项目感到有点困惑。我只需要在javafx舞台上为当前日期创建一个日历,并在两个月之间使用两个简单的下一个/前一个按钮。

到目前为止,我刚刚创建了一个最小的,一个空白的舞台。

(declare-fun x () Int)
(declare-fun y () Int)
(declare-fun z () Int)
(declare-fun xSquared () Int)
(declare-fun ySquared () Int)
(declare-fun zSquared () Int)
(declare-fun xSquaredPlusYSquared () Int)

(assert (= xSquared (* x x)))
(assert (= ySquared (* y y)))
(assert (= zSquared (* z z)))
(assert (= xSquaredPlusYSquared (+ xSquared ySquared)))

(assert (and (> x 0) (> y 0) (> z 0) (= xSquaredPlusYSquared zSquared)))

(check-sat)

(exit)

}

我在java文档中注意到java.util下有一个日历类,但是文档在如何实现它时让我很困惑。基本上我想问一下,接近这个的最佳方法是什么?你能告诉我这个或另一个Calendar课程的基本知识吗?或者我最好使用网格窗格,并在单击下一个或上一个按钮时在舞台上显示哪个场景之间切换?

非常感谢您的时间。

1 个答案:

答案 0 :(得分:0)

尝试一下

exports.updateViewCount = functions.https.onCall((data, context) => {

    const postId = data.postId;
    const userId = data.uid;
    console.log("postId: " + postId + ", userId: " + userId);

    const postsRef = admin.database().ref('posts').child(postId);

    postsRef.child('views_count').set(firebase.database.ServerValue.increment(1))

});