AABB
AlignmentBehavior
ArriveBehavior
AStar
BFS
BoundingSphere
BVH
BVHNode
Cell
CellSpacePartitioning
CohesionBehavior
CompositeGoal
ConvexHull
Corridor
CostTable
DFS
Dijkstra
Edge
EntityManager
EvadeBehavior
EventDispatcher
Behavior
FollowPathBehavior
FuzzyAND
FuzzyCompositeTerm
FuzzyFAIRLY
FuzzyModule
FuzzyOR
FuzzyRule
FuzzySet
FuzzyTerm
FuzzyVariable
FuzzyVERY
GameEntity
Goal
GoalEvaluator
Graph
GraphUtils
HalfEdge
HeuristicPolicyDijkstra
HeuristicPolicyEuclid
HeuristicPolicyEuclidSquared
HeuristicPolicyManhattan
InterposeBehavior
LeftSCurveFuzzySet
LeftShoulderFuzzySet
LineSegment
Logger
MathUtils
Matrix3
Matrix4
MemoryRecord
MemorySystem
MeshGeometry
MessageDispatcher
MovingEntity
NavEdge
NavMesh
NavMeshLoader
NavNode
Node
NormalDistFuzzySet
OBB
ObstacleAvoidanceBehavior
OffsetPursuitBehavior
OnPathBehavior
Path
Plane
Polygon
Polyhedron
PriorityQueue
PursuitBehavior
Quaternion
Ray
RectangleTriggerRegion
Regular
RightSCurveFuzzySet
RightShoulderFuzzySet
SAT
SeekBehavior
SeparationBehavior
SingletonFuzzySet
Smoother
SphericalTriggerRegion
State
StateMachine
SteeringBehavior
SteeringManager
Task
TaskQueue
Telegram
Think
Time
TriangularFuzzySet
Trigger
TriggerRegion
Vector3
Vehicle
Version
WanderBehavior

resolveReferences

本函数用于解决在数据结构中的引用问题。它将递归地遍历数据结构中的所有对象,并检查每个对象是否具有一个key,指向另一个对象。如果找到这样的属性,则将其替换为所引用的对象本身。

语法

function resolveReferences(data, parent)

参数

  • data(Object): 数据结构对象,必须包含需要解决引用问题的属性。
  • parent (Object): (可选) 父对象,用于解决使用非递归方式的引用。

返回值

一旦处理完成,该函数将返回一个没有任何引用的数据结构。

示例

let data = {
  "id": 1,
  "name": "apple",
  "ref": {"$ref": "/otherObject"}
};

let otherObject = {
  "id": 2,
  "name": "banana"
};

data = resolveReferences(data, null /* optional parent */);
// data.result now looks like:
// {
//   "id": 1,
//   "name": "apple",
//   "ref": {
//     "id": 2,
//     "name": "banana"
//   }
// }

说明

在遍历data中的每个对象时,用parent去解决可能存在的引用问题,从而避免递归遍历。

如果要使用“/$ref”成为引用标记,需保证应用的代码中符合JSON Schema规范。

如果在遍历数据结构时找不到任何引用,则返回未经修改的对象。