< documentation
Plugins
Extension Points
resolve 1.0.x
usage
Resolves a string into object. This method allows us to reference classes before they are loaded by simply using the string name in configurations. $.resolve simply walks down the namespace and returns null if the name can't be resolved.
options
id | String | |
---|---|---|
A dot-delimited string. |
examples
Returns the class MyApp.Models.User. if any of the names don't exist while resolving, it simply returns null.
$.resolve('MyApp.Models.User');
releases
Project
- app
- app/boot
- app/boot/client.js
- app/boot/server.js
- app/configs
- app/configs/config.js
- app/configs/environments.js
- app/configs/filters.js
- app/configs/logging.js
- app/configs/routes.js
- app/controllers
- app/controllers/example.js
- app/models
- app/models/example.js
- app/services
- app/services/example.js
- app/templates
- app/templates/example.js
- app/views
- app/views/example.js
- index.html
Guides
This guide is applicable to both the jquery-claypool client and server application frameworks. Where the two differ functionally the documentation will provide notes and examples of usage in each environment.