CheatSheet angularJS
CheatSheet angularJS
Code:
<!doctype html> <html xmlns:ng="http://angularjs.org"> <script src="http://code.angularjs.org/angular0.9.19.min.js" ng:autobind></script> <body> Your name: <input type="text" name="yourname" value="World"/> <hr/> Hello {{yourname}}! </body></html>
ng:click ng:controller
Executes custom behavior when element is clicked. Creates a controller and links it to the DOM.
Result:
{{expression|<filter-name>: <param1>:<param2>:}} currency Formats a number as a currency. date Formats a number as a date. E.g. {{1288323623006 | date:'yyyy-MM-dd HH:mm:ss Z'}} html Prevents the input from getting escaped by angular. json Converts a JavaScript object into JSON string. linky Turns links into html links. lowercase Lowercases a string. number Formats a number as text Usage:{{number_expression| number[:fractionSize] }}
Filters
url
Checks if user input is a valid date. Checks if user input is a valid email. Checks if user input is a valid integer. Checks if user input is a valid JSON. Checks if user input is a valid number. Checks if user input is a valid phone number. Restricts valid input to a specified regular expression pattern. Validates that user input is a well formed URL.
ngm:<event>= "action()
Custom Validator
angular.validator(<name>, function(input [, additional params]) { [your validation code]; if ( [validation succeeds] ) { return false; } else { return "my error message"; } }
ngm:if
Conditionally changes DOM structure. Similar to ng:switch, but does not need nested elements. A service to access the jQuery Mobile Wait Dialog. E.g. this.$waitDialog.show('Please wait'); A service to change the current page, optionally using a defined transition. transition="back": The browser will go back in history to the defined page. pageId="back": Goes back one step in history.
Services
$defer( callback[,delay]) $invalidWidgets $updateView $xhr( method, url[, post], success, error) Defers function execution. Holds references to invalid widgets. Queues view updates. Generates an XHR request.
Formatters
Custom Service
angular.service(<name>, function(dep1) { return someService; }, {$inject: ['dep1']});
Navigation Expressions
$navigate(test, 'outcome1[:transition1]:page1',) Specifies navigation based on outcomes. This will execute the navigation whose outcome equals test. If test is a promise, this will use the result of the promise. outcome="failure" Special outcome for the false value or a failed promise. outcome="success" Special outcome for all cases where "failure" does not match. This can be used directly in HTML pages, e.g. <a href="" ngm:click="$navigate(save(), 'success:homepage', 'failure:errorpage')">
Kirchstrae 6 | 51647 Gummersbach Telefon 02261 6001-0 | Fax -4200 info@opitz-consulting.com www.opitz-consulting.com/go_mobile
Custom Formatter
angular.formatter(<name>, { parse: function(value){ }, format: function(value { } );
Controllers
Directives
ng:submit ng:change ng:class Binds angular expressions to onsubmit events. Runs an expression when an input widgets value changes. Conditionally set CSS class on an element.
Validators
<div ng:controller="SomeController"> function SomeController(dep1) {} SomeController.$inject = ['dep1']; this.$watch( <watchExpr>, function(value) {...} ) Registers listener as a callback to be executed every time a watchExp changes.