How can I use javascript library such as moment.js in react native

后端 未结 5 2090
臣服心动
臣服心动 2021-02-06 20:13

What is the recommended way to use native javascript libraries in react native? Are there any specific restrictions?

5条回答
  •  南旧
    南旧 (楼主)
    2021-02-06 20:36

    Some of the moment methods work in React Native and others don't. I suspect it has to do with listeners.

    I can use moment for formatting:

    moment(new Date()).format("YYYY-MM-DD hh:mm:ss")
    

    But not for active formatting:

    moment(new Date()).format("YYYY-MM-DD hh:mm:ss").fromNow()
    

提交回复
热议问题