获取Angular范围变量长度

时间:2015-05-07 12:19:10

标签: javascript angularjs

我需要获得Angular模型$scope的长度。我的代码提醒undefined 但是scope在我scope

警告length时有一个值
alert($scope.comppostal.length)

如何检查长度? $scope.comppostal的内容为12345

1 个答案:

答案 0 :(得分:6)

您收到undefined,因为$scope.comppostal是一个数字。您需要将其转换为字符串。

使用

alert((''+$scope.comppostal).length)

var a = 12345;
alert(('' + a).length);