我可以从 Luxon 图书馆获得 DD MM 格式的一天和一个月吗?

Can I get a day and a month in DD MM formats from Luxon library?

现在我可以得到格式为 7/6/2019 的一天和一个月。但我需要这样的东西 07/06/2019。目前,我还没有找到 returns 我想要的 day/month 格式的方法。

根据 docs,考虑以下内容:

console.log(luxon.DateTime.local().toFormat('MM/dd/yyyy')); //07/06/2019
<script src="https://cdn.jsdelivr.net/npm/luxon@1.17.1/build/global/luxon.min.js"></script>