MomentJS-はじめに
この章では、操作方法について説明します MomentJS using RequireJS そして MomentJS and TypeScript。
MomentJSとRequireJS
RequireJSを使用したMomentJSの動作を理解するために、MomentJSとRequireJSを使用した動作例を分析してみましょう。対応するアプリのフォルダー構造を次の画像に示します-
RequireJS公式サイトから取得したrequire.jsファイルを入手できます-https://requirejs.org/docs/download.html. 理解を深めるために、次のコードを確認してください。
例project.html
<!DOCTYPE html>
<html>
<head>
<title>RequireJS and MomentJS</title>
<!-- data-main attribute tells require.js to load
scripts/main.js after require.js loads. -->
<script data-main="scripts/main" src="scripts/require.js"></script>
</head>
<body>
<h1>RequireJS and MomentJS</h1>
<div id="datedisplay" style="font-size:25px;"></div>
</body>
</html>
main.js
require.config({
paths:{
'momentlocale':'libs/momentlocale',
},
});
require(['momentlocale'], function (moment) {
moment.locale('fr');
var a = moment().format("LLLL");
document.getElementById("datedisplay").innerHTML = a;
});
ご了承ください Moment.js そして momentlocale.js フォルダにあります libs。
以下はの出力です project.html あなたがブラウザで観察すること-
MomentJSとTypeScript
MomentJSおよびTypescriptプロジェクトのビルドに使用されるコードは次のとおりです-
package.json
{
"name": "momenttypescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"dependencies": {
"browserify": "^16.2.0",
"gulp": "^3.9.1",
"gulp-connect": "^5.5.0",
"gulp-typescript": "^4.0.2",
"moment": "^2.22.1",
"tsify": "^4.0.0",
"typescript": "^2.8.3",
"vinyl-source-stream": "^2.0.0"
},
"devDependencies": {},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
で利用可能な依存関係に注意してください package,json npmを使用してインストールする必要があります install。
main.ts
import * as moment from 'moment';
let now = moment().format('LLLL');
document.getElementById("datedisplay").innerHTML = now;
必要がある use タイプスクリプトからJavaScriptにファイルをビルドするためのgulp、つまり main.ts に main.js。次のコードは、gulpfileファイルのビルドに使用される.js。使用したことに注意してくださいgulp-connect ローカルサーバーを開いて出力を表示するパッケージ。
gulpfile.js
var gulp = require("gulp");
var connect = require("gulp-connect");
var browserify = require("browserify");
var tsify = require("tsify");
var source = require("vinyl-source-stream");
gulp.task("build", function (cb) {
runSequence("browserify", "minify", cb);
});
gulp.task("startserver", ["browserify", "connect"]);
gulp.task("browserify", function () {
var b = browserify({
insertGlobals: true,
debug: false
}) .add("src/main.ts") .plugin(tsify, { typescript: require("typescript") });
return b
.bundle()
.pipe(source("main.js"))
.pipe(gulp.dest("build/"));
});
gulp.task("connect", function () {
connect.server({
root: ".",
// port: '80',
livereload: true
});
});
これは、上記のコードを実行したときに観察される出力です。
次の形式でフォルダ構造を確認できます-
index.htmlのコードを以下に示します-
<html>
<head></head>
<body>
<h1>MomentJS and typescript</h1>
<div id="datedisplay" style="font-size:30px;"></div>
<script src="build/main.js"></script>
</body>
</html>
今、あなたが開くと http://localhost:8080/、以下のような出力が見られます−