次のthriftデータ型に相当するnodejsデータ型は何ですか -
List
Set
Map
これは私の .thrift ファイルです。
struct Person{
1: required string name_;
2: required map<i64,string> attribute1_;
3: required map<i64,i64> attribute2_;
4: required map<i64,string> attribute3_;
}
service ProcessPerson {
void DoPerson(
1: required list<Person> person_array
)
}
nodejs クライアントで、DoPerson メソッドを呼び出している間、person_array のデータ型は何にする必要がありますか? オブジェクトの配列ですか?