如何从时间(11.15 AM)提取小时,分钟

时间:2019-04-01 07:18:36

标签: angular angular6 angular-moment

我想提取小时,分钟

例如

时间“ 11.56 PM”

我想从时间中提取小时-11,分钟-56,AMPM-PM。

请问您可以在角度6中提出建议吗

预先感谢

1 个答案:

答案 0 :(得分:1)

使用this

methods: {
        interpretVars: function(markdown) {
            let that = this;
            $.getJSON("/api/v1/getdoc?code=" + this.$route.query.code, function (result) {
                var interpreted = markdown.replace(/\{\#(companyName)\#\}/g, 'Demo')
                    .replace(/\{\#(docType)\#\}/g, result[0].datas.category).replace(/\{\#(version)\#\}/g, result[0].datas.version)
                    .replace(/\{\#(docTitle)\#\}/g, result[0].datas.title);
                that.markdown = interpreted;
              console.log(interpreted, that.markdown);
              return interpreted;
            });
        }
    },