admin管理员组文章数量:1346076
I need to get the length of Angular model $scope
. My code alerts undefined
.
But scope
has a value when I alert scope
without length
alert($scopeppostal.length)
How to check the length? Content of $scopeppostal
is 12345
I need to get the length of Angular model $scope
. My code alerts undefined
.
But scope
has a value when I alert scope
without length
alert($scope.ppostal.length)
How to check the length? Content of $scope.ppostal
is 12345
-
Can you post content of
$scope.ppostal
? – Zee Commented May 7, 2015 at 12:19 - its working when i errase the value and re-enter – Coder Commented May 7, 2015 at 12:21
-
@Ervikas. Thats a number. How can you use
.length
for a number? – Zee Commented May 7, 2015 at 12:23
1 Answer
Reset to default 7You are getting the undefined
as $scope.ppostal
is a number. You need to convert it to string.
Use
alert((''+$scope.ppostal).length)
var a = 12345;
alert(('' + a).length);
本文标签: javascriptGet Angular scope variable lengthStack Overflow
版权声明:本文标题:javascript - Get Angular scope variable length - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743820534a2544705.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论