This functionality is Sneak Peek status. This means that the APIs may change. We welcome your feedback, ideas, and code, but please use caution if you use this new functionality.
fluid.model.resolvePathSegment(root, segment, create)
fluid.model.resolvePathSegment(root, segment, create);
File name: Fluid.js
Parameters
root |
(Object) The object to search |
segment |
(String) The path segment to search for. |
create |
(boolean) If true and the requested path segment does not exist, an empty object will be created at the path. |
Return Value
Object | The object found at the requested path segment. |
Example
var atval = fluid.model.resolvePathSegment(component, thisSeg);
In this example, ...