我编写了一些代码here,它从.JSON文件中获取数据并将其转换为字符串化对象。
我需要在此处导出源和目标类:
class Source {
constructor(source_address, source_lat, source_lng, scan_type) {
this.source_address = source_address;
this.source_lat = source_lat;
this.source_lng = source_lng;
}
};
class Destination {
constructor(dest_address, dest_lat, dest_lng, scan_type) {
this.dest_address = dest_address;
this.dest_lat = dest_lat;
this.dest_lng = dest_lng;
this.scan_type = scan_type;
}
};
我这样初始化:
//Initialize Source
obj.forEach(block => {
//initialize Values
var sourceClass = new Source(block.source_address, block.source_lat, block.source_lng, block.scan_type);
});
...
//Initialize Destination
obj.forEach(block => {
//initialize Destination
var destinationClass = new Destination(block.dest_address, block.dest_lat, block.dest_lng, block.scan_type);
});
到一个单独的JavaScript文件中。
我尝试过使用module.export()和"要求"我的javascript文件,但似乎没什么用。
如何将我的Source和Destination类及其所有值导出到另一个Javascript文件?