- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有关在使用变量绑定(bind)与私有(private)方法命名函数约定时构造Angular代码和JavaScript行为的一些问题。在AngularJS中通过私有(private)方法命名使用变量绑定(bind)函数/一流函数是否有性能或风格上的原因?每种方法对起重有何影响?下面的第二种方法是否会减少吊装量,这会对应用性能产生显着影响吗?
私有(private)方法命名的示例。这是构造Angular代码的推荐方法吗?
(function () {
'use strict'
function modalController(dataItemsService, $scope) {
var vm = this;
function _getSelectedItems() {
return dataItemsService.SelectedItems();
}
function _deleteSelectedItems() {
dataItemService.DeleteItem();
$("#existConfirmDialog").modal('hide');
}
vm.SelectedItems = _getSelectedItems;
vm.deleteItemRecord = _deleteItemRecord;
}
angular.module('app').controller('modalController', ['dataItemService', '$scope', modalController]
})();
angular.module('appname').controller("NameCtrl", ["$scope", "$log", "$window", "$http", "$timeout", "SomeService",
function ($scope, $log, $window, $http, $timeout, TabService) {
//your controller code
$scope.tab = 0;
$scope.changeTab = function(newTab){
$scope.tab = newTab;
};
$scope.isActiveTab = function(tab){
return $scope.tab === tab;
};
}
]);
最佳答案
第一种方法使用“私有(private)”方法并通过公共(public)别名公开它们,称为Revealing Module Pattern,尽管在示例中,这些方法实际上不是私有(private)的。
后者是一个标准的Constructor Pattern,使用$ scope作为上下文。
Is there a performance or stylistic reason for using
variable
bound functions / first class functions in AngularJS over private method naming?Is [there] a recommended way to structure Angular code?
$scope
,另一个使用this
。闭包中定义了一个构造函数,内联定义了一个构造函数。this
上使用变量vm
/ $scope
的原因。这些不是互斥的。this
而不是$scope
公开状态和行为。this
或
$scope
。
variable
(
vm
,
$scope
)是由Controller函数创建的实例的上下文(
this
)。
$scope
是Angular的“特殊”上下文;它已经定义了一些行为供您使用(例如$ scope。$ watch)。
$scopes
也遵循一个继承链,即$ scope继承分配给其父$ scope的状态和行为。
angular.module("Module")
.controller("Controller", ["$scope", function($scope) {
$scope.tab = 0;
$scope.incrementTab = function() {
$scope.tab++;
};
}])
.controller("OtherController", ["$scope", function($scope) {
// nothing
}]);
和一个观点
<div ng-controller="Controller">
<p>{{ tab }}</p>
<button ng-click="incrementTab();">Increment</button>
<div ng-controller="OtherController">
<p>{{ tab }}</p>
<button ng-click="incrementTab();">Increment</button>
</div>
</div>
示例
here
$scope.tab
,它也会从Controller继承它,因为Controller是DOM中的父级。在显示选项卡的两个地方,您都应该看到“0”。这可能是您所指的
"hoisting",尽管这是一个完全不同的概念。
.controller("OtherController", ["$scope", function($scope) {
$scope.tab = 42;
}]);
您会注意到此行为已更改-选项卡的值不再同步。
$scope
上使用 namespace 来解决此问题,例如
$scope.vm
并将所有内容分配给命名空间:
$scope.vm.tab = 0;
<div ng-controller="OtherController">
<p>{{ vm.tab }}</p>
<button ng-click="vm.incrementTab();">Increment</button>
</div>
另一种方法是使用
this
的简单性和简洁性,并利用controllerAs语法。
.controller("OtherController", function() {
this.tab = 0;
});
<div ng-controller="OtherController as oc">
<p>{{ oc.tab }}</p>
</div>
对于习惯使用普通JS的人来说,这可能会更舒适,并且这样更容易避免与其他Angular源的冲突。您始终可以随时更改 namespace 。由于您没有创建新的
$scope
实例,因此它在性能上也较“轻松”,但是我不确定会有什么好处。
function modalController(dataItemsService) {
var vm = this;
vm.selectedItems = dataItemsService.SelectedItems(); // get a copy of my data
vm.updateItem = dataItemService.UpdateItem; // update the source
}
但是,等等,我怎么知道我的应用程序的另一部分何时更改了我的私有(private)数据?我怎么知道何时获得SelectedItems的新副本?这是$ scope。$ watch发挥作用的地方:
function modalController(dataItemsService, $scope) {
var vm = this;
vm.updateItem = dataItemService.UpdateItem; // update the source
// periodically check the selectedItems and get a fresh copy.
$scope.$watch(dataItemsService.SelectedItems, function(items) {
vm.items = items;
});
// thanks $scope!
}
如果您的数据没有共享,或者您的私有(private)数据代表View层而不是Model层,那么将其保留在 Controller 中是完全可以的。
function Controller() {
var buttonClicked = false;
this.click = function() {
buttonClicked = true; // User can not lie and say they didn't.
};
}
$("#existConfirmDialog").modal('hide');
这个示例可能并不纯粹是邪恶的,但是避免访问和修改指令之外的DOM,您不想通过修改其下面的DOM来破坏应用程序的其他部分。
关于javascript - 变量绑定(bind)/第一类函数是否比私有(private)方法命名更可取?吊装如何受到影响?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29907572/
我想了解 Ruby 方法 methods() 是如何工作的。 我尝试使用“ruby 方法”在 Google 上搜索,但这不是我需要的。 我也看过 ruby-doc.org,但我没有找到这种方法。
Test 方法 对指定的字符串执行一个正则表达式搜索,并返回一个 Boolean 值指示是否找到匹配的模式。 object.Test(string) 参数 object 必选项。总是一个
Replace 方法 替换在正则表达式查找中找到的文本。 object.Replace(string1, string2) 参数 object 必选项。总是一个 RegExp 对象的名称。
Raise 方法 生成运行时错误 object.Raise(number, source, description, helpfile, helpcontext) 参数 object 应为
Execute 方法 对指定的字符串执行正则表达式搜索。 object.Execute(string) 参数 object 必选项。总是一个 RegExp 对象的名称。 string
Clear 方法 清除 Err 对象的所有属性设置。 object.Clear object 应为 Err 对象的名称。 说明 在错误处理后,使用 Clear 显式地清除 Err 对象。此
CopyFile 方法 将一个或多个文件从某位置复制到另一位置。 object.CopyFile source, destination[, overwrite] 参数 object 必选
Copy 方法 将指定的文件或文件夹从某位置复制到另一位置。 object.Copy destination[, overwrite] 参数 object 必选项。应为 File 或 F
Close 方法 关闭打开的 TextStream 文件。 object.Close object 应为 TextStream 对象的名称。 说明 下面例子举例说明如何使用 Close 方
BuildPath 方法 向现有路径后添加名称。 object.BuildPath(path, name) 参数 object 必选项。应为 FileSystemObject 对象的名称
GetFolder 方法 返回与指定的路径中某文件夹相应的 Folder 对象。 object.GetFolder(folderspec) 参数 object 必选项。应为 FileSy
GetFileName 方法 返回指定路径(不是指定驱动器路径部分)的最后一个文件或文件夹。 object.GetFileName(pathspec) 参数 object 必选项。应为
GetFile 方法 返回与指定路径中某文件相应的 File 对象。 object.GetFile(filespec) 参数 object 必选项。应为 FileSystemObject
GetExtensionName 方法 返回字符串,该字符串包含路径最后一个组成部分的扩展名。 object.GetExtensionName(path) 参数 object 必选项。应
GetDriveName 方法 返回包含指定路径中驱动器名的字符串。 object.GetDriveName(path) 参数 object 必选项。应为 FileSystemObjec
GetDrive 方法 返回与指定的路径中驱动器相对应的 Drive 对象。 object.GetDrive drivespec 参数 object 必选项。应为 FileSystemO
GetBaseName 方法 返回字符串,其中包含文件的基本名 (不带扩展名), 或者提供的路径说明中的文件夹。 object.GetBaseName(path) 参数 object 必
GetAbsolutePathName 方法 从提供的指定路径中返回完整且含义明确的路径。 object.GetAbsolutePathName(pathspec) 参数 object
FolderExists 方法 如果指定的文件夹存在,则返回 True;否则返回 False。 object.FolderExists(folderspec) 参数 object 必选项
FileExists 方法 如果指定的文件存在返回 True;否则返回 False。 object.FileExists(filespec) 参数 object 必选项。应为 FileS
我是一名优秀的程序员,十分优秀!