我已经完成了用户创建的所有黑板的显示。但现在我想为其他用户访问这些黑板。所以我需要在数据库中字段,这取决于用户ID分配,添加另一个id用户。这里有问题,如何制作一个打印所有blackboads的循环,但如果在board.users []中存在user._id。
<ul>
<li ng-repeat="board in boards" >
<a href="b/{{board._id}}">
<div>{{board.name}}</div>
</a>
</li>
我使用mongodb和mongoose和nodejs + angularjs
答案 0 :(得分:0)
您可以简单地使用ng-if i-e:
session_start(); //php part
$_SESSION['student']=array();
$student_name=$_POST['student_name']; //student_name form field name
$student_city=$_POST['city_id']; //city_id form field name
array_push($_SESSION['student'],$student_name,$student_city);
//print_r($_SESSION['student']);
<table class="table"> //html part
<tr>
<th>Name</th>
<th>City</th>
</tr>
<tr>
<?php for($i = 0 ; $i < count($_SESSION['student']) ; $i++) {
echo '<td>'.$_SESSION['student'][$i].'</td>';
} ?>
</tr>
</table>