<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.3/angular.min.js"></script>
var ment = angular.module('ent', []);
ment.controller('EntCtrl', function($compile,$scope) {
window.compileE = compileE;
function compileE(code) {
var scope = $scope.$new();
$compile(code)(scope);
scope.$destroy();
}
});
eMent = angular.element('<div><div ng-controller="EntCtrl"></div></div>');
angular.element(document.body).append(eMent);
angular.bootstrap(eMent[0], ['ent']);
window.compileE('<div ng-click="click()"></div>');
window.compileE('<div onclick="click()"></div>');
window.compileE('<div ng-click="click()"></div>');
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
ng | |
native | |
ngx |
Test name | Executions per second |
---|---|
ng | 7871.1 Ops/sec |
native | 11609.6 Ops/sec |
ngx | 8871.1 Ops/sec |
Let's break down the provided JSON and explain what is being tested on MeasureThat.net.
Benchmark Definition
The benchmark definition consists of two main parts:
compileE
function is defined inside the controller, which takes a string of HTML code as input and compiles it using the $compile
service. The compiled HTML is then stored in the scope
variable.Individual Test Cases
There are three test cases:
ng-click
attribute to trigger an event when clicked.onclick
attribute instead of the ng-click
attribute.ng
test case, but it's not clear what difference it makes since both use ng-click
.Options Compared
The three test cases compare different ways of triggering an event when clicked:
ng-click
: An AngularJS-specific syntax for binding a function to a click event.onclick
: A native JavaScript syntax for binding a function to a click event.Pros and Cons
Here are some pros and cons of each approach:
ng-click
, especially when working with complex event handlers.Library and Purpose
The AngularJS library is used in this benchmark to provide the $compile
service, which is responsible for compiling HTML templates into functions that can be executed on a scope. The purpose of using AngularJS here is likely to demonstrate its performance characteristics in compiling HTML code.
Special JS Feature/Syntax
None are explicitly mentioned in the provided JSON, but it's worth noting that ng-click
and onclick
both use event handling syntax that is specific to JavaScript and not as widely supported as other languages.