我一直在尝试创建一个 AngularJS 指令,它将接受用户输入并将其显示为项目符号点,就像密码输入一样。
这是我目前所拥有的:
expose.link = function(scope, element, attributes, controller) {
var maskValue = function(value) {
// replace all characters with the mask character
return (value || "").replace(/[\S]/g, "\u2022");
}
controller.$parsers.push(function(value) {
return maskValue(value);
});
}
这是做什么的:
View: asdf Model: ****
但我实际上需要它来执行此操作:
View: **** Model: asdf
我也试过这个:
controller.$formatters.push(function(value) {
return maskValue(value);
});
但这只有在模型从我的代码中更改时才有效。 我需要它在用户输入字段时工作。
如果有一种方法可以手动触发 $formatters 运行,我觉得这可能会奏效,但我找不到执行此操作的方法。不过,我可能缺少一些明显的东西。
最佳答案
最终解决方案非常简单...
angular.module("core.application.main")
.directive("core.application.main.directive.mask",
["$compile",
function($compile) {
// Mask user input, similar to the way a password input type would
// For example: transform abc123 into ******
// Use this when you need to mask input, but without all the baggage that comes with the
// 'password' input type (such as the browser offering to save the password for the user)
//
// ----- POSSIBLE USE CASE -----
// CVC input field for a credit card
//
// ----- HOW IT WORKS -----
// When the input field gains focus, it's cloned and the clone is changed to a 'password' type
// The original input field is hidden at this point and the clone is shown
// When the user types into the clone the real input field's model will be kept up to date
// When the cloned input field loses focus, it's removed from the page and the original input
// is shown. The model value is masked for display in this field using the $formatters
var expose = {};
expose.require = "ngModel";
expose.restrict = "A";
expose.link = function(scope, element, attributes, controller) {
var maskedInputElement;
var maskValue = function(value) {
// replace all characters with the mask character
return (value || "").replace(/[\S]/g, "\u2022");
};
var createMaskedInputElement = function() {
if (! maskedInputElement || ! maskedInputElement.length) {
maskedInputElement = element.clone(true);
maskedInputElement.attr("type", "password"); // ensure the value is masked
maskedInputElement.removeAttr("name"); // ensure the password save prompt won't show
maskedInputElement.removeAttr("core.application.main.directive.mask"); // ensure an infinite loop of clones isn't created
maskedInputElement.bind("blur", function() {
element.removeClass("ng-hide");
maskedInputElement.remove();
maskedInputElement = null;
});
$compile(maskedInputElement)(scope);
element.after(maskedInputElement);
}
};
element.bind("focus", function() {
createMaskedInputElement();
element.addClass("ng-hide");
maskedInputElement[0].focus();
});
controller.$formatters.push(function(value) {
// ensure the displayed value is still masked when the clone is hidden
return maskValue(value);
});
};
return expose;
}
]);
以及对它的测试...
describe("Mask Directive", function() {
var scope;
var element;
beforeEach(module("core.application.main"));
beforeEach(inject(function($rootScope, $compile) {
scope = $rootScope.$new();
/* jshint multistr: true */
element = angular.element(" \
<input name='cvc' type='text' ng-model='cvc' class='test' core.application.main.directive.mask> \
");
$compile(element)(scope);
}));
it("should create a masked clone of the element when its focussed", function() {
var clonedElement;
element.triggerHandler("focus");
clonedElement = element.next();
expect(clonedElement.attr("type")).toEqual("password");
expect(clonedElement.attr("name")).toEqual(null);
expect(clonedElement.attr("core.application.main.directive.mask")).toEqual(null);
expect(clonedElement.attr("ng-model")).toEqual("cvc");
expect(clonedElement.hasClass("test")).toEqual(true);
expect(element.hasClass("ng-hide")).toEqual(true);
});
it("should not create a masked clone if the mask has already been created", function() {
expect(element.next().length).toEqual(0); // the clone shouldn't exist yet
expect(element.next().next().length).toEqual(0); // another potential clone shouldn't exist yet
element.triggerHandler("focus");
expect(element.next().length).toEqual(1); // a clone should have been created
element.triggerHandler("focus");
expect(element.next().next().length).toEqual(0); // another clone should not have been created
});
it("should remove the masked input on blur and show the element", function() {
var clonedElement;
element.triggerHandler("focus");
clonedElement = element.next();
clonedElement.triggerHandler("blur");
expect(element.next().length).toEqual(0);
expect(element.hasClass("ng-hide")).toEqual(false);
});
it("should keep the element's model up to date based on the masked elements value", function() {
var clonedElement;
element.triggerHandler("focus");
clonedElement = element.next();
clonedElement.val("test").triggerHandler("input");
expect(scope.cvc).toEqual("test");
expect(element.val()).toEqual("••••");
});
});
如果您想使用它,那么您需要将“core.application.main.directive.mask”重命名为您使用的任何命名空间方法。
一位同事质疑该指令的必要性,建议只使用不带“name”属性的普通密码字段……不幸的是有些东西需要“name”属性,否则该字段的验证将无法在 Angular 中工作.
关于javascript - 如何使用 Angularjs 指令屏蔽输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30724930/
我正在学习如何使用Nokogiri,根据这段代码我遇到了一些问题:require'rubygems'require'mechanize'post_agent=WWW::Mechanize.newpost_page=post_agent.get('http://www.vbulletin.org/forum/showthread.php?t=230708')puts"\nabsolutepathwithtbodygivesnil"putspost_page.parser.xpath('/html/body/div/div/div/div/div/table/tbody/tr/td/div
总的来说,我对ruby还比较陌生,我正在为我正在创建的对象编写一些rspec测试用例。许多测试用例都非常基础,我只是想确保正确填充和返回值。我想知道是否有办法使用循环结构来执行此操作。不必为我要测试的每个方法都设置一个assertEquals。例如:describeitem,"TestingtheItem"doit"willhaveanullvaluetostart"doitem=Item.new#HereIcoulddotheitem.name.shouldbe_nil#thenIcoulddoitem.category.shouldbe_nilendend但我想要一些方法来使用
我有一个Ruby程序,它使用rubyzip压缩XML文件的目录树。gem。我的问题是文件开始变得很重,我想提高压缩级别,因为压缩时间不是问题。我在rubyzipdocumentation中找不到一种为创建的ZIP文件指定压缩级别的方法。有人知道如何更改此设置吗?是否有另一个允许指定压缩级别的Ruby库? 最佳答案 这是我通过查看rubyzip内部创建的代码。level=Zlib::BEST_COMPRESSIONZip::ZipOutputStream.open(zip_file)do|zip|Dir.glob("**/*")d
类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc
很好奇,就使用rubyonrails自动化单元测试而言,你们正在做什么?您是否创建了一个脚本来在cron中运行rake作业并将结果邮寄给您?git中的预提交Hook?只是手动调用?我完全理解测试,但想知道在错误发生之前捕获错误的最佳实践是什么。让我们理所当然地认为测试本身是完美无缺的,并且可以正常工作。下一步是什么以确保他们在正确的时间将可能有害的结果传达给您? 最佳答案 不确定您到底想听什么,但是有几个级别的自动代码库控制:在处理某项功能时,您可以使用类似autotest的内容获得关于哪些有效,哪些无效的即时反馈。要确保您的提
假设我做了一个模块如下:m=Module.newdoclassCendend三个问题:除了对m的引用之外,还有什么方法可以访问C和m中的其他内容?我可以在创建匿名模块后为其命名吗(就像我输入“module...”一样)?如何在使用完匿名模块后将其删除,使其定义的常量不再存在? 最佳答案 三个答案:是的,使用ObjectSpace.此代码使c引用你的类(class)C不引用m:c=nilObjectSpace.each_object{|obj|c=objif(Class===objandobj.name=~/::C$/)}当然这取决于
我正在尝试使用ruby和Savon来使用网络服务。测试服务为http://www.webservicex.net/WS/WSDetails.aspx?WSID=9&CATID=2require'rubygems'require'savon'client=Savon::Client.new"http://www.webservicex.net/stockquote.asmx?WSDL"client.get_quotedo|soap|soap.body={:symbol=>"AAPL"}end返回SOAP异常。检查soap信封,在我看来soap请求没有正确的命名空间。任何人都可以建议我
关闭。这个问题是opinion-based.它目前不接受答案。想要改进这个问题?更新问题,以便editingthispost可以用事实和引用来回答它.关闭4年前。Improvethisquestion我想在固定时间创建一系列低音和高音调的哔哔声。例如:在150毫秒时发出高音调的蜂鸣声在151毫秒时发出低音调的蜂鸣声200毫秒时发出低音调的蜂鸣声250毫秒的高音调蜂鸣声有没有办法在Ruby或Python中做到这一点?我真的不在乎输出编码是什么(.wav、.mp3、.ogg等等),但我确实想创建一个输出文件。
给定这段代码defcreate@upgrades=User.update_all(["role=?","upgraded"],:id=>params[:upgrade])redirect_toadmin_upgrades_path,:notice=>"Successfullyupgradeduser."end我如何在该操作中实际验证它们是否已保存或未重定向到适当的页面和消息? 最佳答案 在Rails3中,update_all不返回任何有意义的信息,除了已更新的记录数(这可能取决于您的DBMS是否返回该信息)。http://ar.ru
我在我的项目目录中完成了compasscreate.和compassinitrails。几个问题:我已将我的.sass文件放在public/stylesheets中。这是放置它们的正确位置吗?当我运行compasswatch时,它不会自动编译这些.sass文件。我必须手动指定文件:compasswatchpublic/stylesheets/myfile.sass等。如何让它自动运行?文件ie.css、print.css和screen.css已放在stylesheets/compiled。如何在编译后不让它们重新出现的情况下删除它们?我自己编译的.sass文件编译成compiled/t