我正在使用node.js和Typescript创建一个简单的Web应用程序以增强对它的熟悉程度,并且我想知道加载JSON配置文件(其文件名在运行时确定)的最佳方法。
我在网上找到了一些建议:
第一种方法看起来应该可行,但是第二种方法看起来更整洁。问题在于,使用第二种方法时,出现以下错误:
An import declaration can only be used in a namespace or module. ts(1232)
因为我想将文件名指定为参数的构造函数中导入文件。其次,如果我尝试将给定的文件名附加到要从中获取文件名的常量目录中,则会出现以下错误:
';' expected. ts(1005)
这是我尝试加载JSON的类中的一个(非编译)代码片段,以及我尝试加载的JSON文件示例。
Typescript类:
import Floor from './Floor'
import Elevator from './Elevator'
import Person from './Person'
class Building {
public name: string
private floors: Floor[]
private elevators: Elevator[]
private people: Person[]
private time: number
constructor(config_filename: string) {
import * as config from '../config/'+config_filename
const building = (<any>config).building
this.name = name
this.floors = []
building.floors.forEach((floor) => {
this.floors.push(new Floor(floor.number, floor.name))
})
this.elevators = []
building.elevators.forEach((elevator) => {
this.elevators.push(new Elevator(elevator.name, elevator.weight_capacity, elevator.start_floor_no, this))
})
this.people = []
building.people.forEach((person) => {
const person_instance = new Person(person.name, 10, person.algorithm)
this.people.push(person_instance)
this.floors[person.start_floor_no].addOccupant(person_instance)
})
this.time = 0
}
...
示例JSON配置文件:
{
"building": {
"name": "Basic Inc.",
"floors": [
{
"number": 0,
"name": "Ground Floor"
},
{
"number": 1,
"name": "1st Floor"
}
],
"elevators": [
{
"name": "Bruce",
"weight_capacity": 100,
"start_floor_no": 0
}
],
"people": [
{
"name": "Wendy Fox",
"start_floor_no": 0,
"algorithm": "desk"
}
]
}
}
我应该坚持第一种方法,还是有一些更整洁的方式来加载仅在运行时才知道的文件名的JSON文件?
答案 0 :(得分:1)
在您的示例中,import
语句适用于TS被“编译”到JS时的情况,而不适用于在运行时使用new Building(<name>)
的情况(当代码实际执行时, 通过节点进程进行编译)。
选项1是对Node执行此操作的好方法。我想您正在尝试摆脱笨拙的fs函数。
另一种选择是使用从代码到其自身的GET请求,尽管表面上看起来是相同的,但您可以轻松地探索async / await
函数,这些函数有点整洁*。
*(几个月前的最后一次,我尝试使用fs,但未能通过async / await使它运行,但现在可能已经改变了?)