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

fromJSON

功能

将从JSON字符串中解析的数据添加到MemoryRecord实例中。

语法

MemoryRecord.fromJSON(json, options);

参数

  • json:要解析的JSON字符串。
  • options:一个可选的对象,可以包含以下属性:
    • parent:一个MemoryRecord实例,表示要添加到这个实例的子集。如果未指定,则将解析后的数据添加到当前MemoryRecord实例中。

返回值

该方法没有返回值。

示例

假设我们有以下JSON数据:

[
  {
    "id": 1,
    "name": "Apple",
    "color": "red"
  },
  {
    "id": 2,
    "name": "Banana",
    "color": "yellow"
  },
  {
    "id": 3,
    "name": "Grapes",
    "color": "purple"
  }
]

我们可以使用以下代码将它们添加到MemoryRecord实例中:

const fruits = MemoryRecord.fromJSON(json);

如果要将这些水果添加到一个名为food的记录中,则可以按以下方式执行:

const food = new MemoryRecord();
MemoryRecord.fromJSON(json, { parent: food });

在这种情况下,解析后的数据将作为food.children属性的值添加到food实例中。

异常

  • JSON.parse方法会抛出任何与JSON格式不兼容的异常。
  • 如果options.parent没有找到,则会抛出一个引用错误异常。