LWCでの共通Util自分で作る
10548 ワード
1.目的
今回LWCでの共通Utilの作成方法を共有します。
2.ソース構成図
lwc
├─commonUtil
└─commonUtilChild
commonUtil
lwc
├─commonUtil
└─commonUtilChild
commonUtil.js
/**
* デートフォマート
* @param {Date} date date
* @param {string} fmt format
* @returns {string} StringDate
*/
export const dateFormat = (date, fmt = 'YYYY/mm/dd') => {
let ret;
const opt = {
'Y+': date.getFullYear().toString(), // 年
'm+': (date.getMonth() + 1).toString(), // 月
'd+': date.getDate().toString(), // 日
'H+': date.getHours().toString(), // 時
'M+': date.getMinutes().toString(), // 分
'S+': date.getSeconds().toString() // 秒
};
for (let k in opt) {
ret = new RegExp('(' + k + ')').exec(fmt);
if (ret) {
fmt = fmt.replace(ret[1], (ret[1].length == 1) ? (opt[k]) : (opt[k].padStart(ret[1].length, '0')))
};
};
return fmt;
}
commonUtil.js-meta.xml
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>52.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
commonUtilChild
commonUtilChild.html
<template>
<div class="slds-card" style="height:500px;width:1200px">{dateStr}</div>
</template>
commonUtilChild.js
import { LightningElement, track } from 'lwc';
import { dateFormat } from 'c/commonUtil';
export default class CommonUtilChild extends LightningElement {
@track dateStr;
connectedCallback() {
this.timer = setInterval(() => {
this.dateStr = dateFormat(new Date(), 'YYYY/mm/dd HH:MM:SS');
})
}
disconnectedCallback() {
clearInterval(this.timer);
}
}
commonUtilChild.js-meta.xml
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>52.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
3.ロカールで動作確認
Author And Source
この問題について(LWCでの共通Util自分で作る), 我々は、より多くの情報をここで見つけました https://qiita.com/MADAOU/items/5fe86be9d8715e82dc17著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .