0
如何使用另一個js文件的功能。node.js使用另一個js文件的功能
示例:
master.js文件包含以下代碼。
if(typeof(CONVERTER) == "undefined") var CONVERTER = {};
(function(_e) {
"use strict";
var synmonth = 29.530588853; //synodic month (new Moon to new Moon)
var ptsa = new Array(485, 203, 199, 14, 12, 12, 12, 9, 8)
var ptsb = new Array(324.96, 337.23,320.81, 227.73, 15.45)
var ptsc = new Array(1934.136, 4777.259, 1222.114, 16859.074)
function GetAdjusted(yea,mx,dx){
.......
return(result);
}
_e.GetAdjusted = function(yea,mx,dx) {
return GetAdjusted(yea,mx,dx);
};
}(CONVERTER));
如何使用/如何使用Node.js
使用'require'模塊。 https://nodejs.org/api/modules.html –
我得到一個錯誤TypeError:對象#
您可能無法正確創建模塊。你有沒有在鏈接中的例子? –