我有3张带有内容的foreach。因此,这些复选框告诉我的angularjs代码为0,如果是,它应该不能继续下一步。
我试图了解它在这一点上给出了成功或错误。
现在问题在于:例如,如果您选择了一个或多个内容,它就不会给我一个错误或成功的消息。
index.cshtml:
@foreach (var itemTypes in Model.ColorsAdd)
{
<li class="col-md-4">
<img src="@itemTypes.img" class="img-responsive img-rounded mb-lg" />
<p class="label label-lg label-primary full-width">
<input type="checkbox"
ng-checked="ItemSelectedColor"
name="SelectedTypes"
value="@itemTypes.Id" />
@itemTypes.Text
</p>
</li>
}
angularjs-usercreate.js
$scope.UppersViewClick = function ()
{
if ($scope.ItemSelectedColor.length >= 1) {
console.log("succes")
}
else
{
console.log("error");
}
}
这里出现在页面上 - 用图片知道它,但它不是我正在看的那一刻。