我一直在编写具有几乎相同结构(DOM)的SPA,SPA(授权表格除外)。视觉看起来完全一样,但它们之间几乎没有什么不同。模型在不同的情况下是不同的,应用的行为取决于此时使用的模型。例如,一个模型看起来像:
<table class="matrix" ng-if="search_result_type=='find_company'">
<tr ng-class="{matrix_row: !row.show}" ng-style="multiStyle(row, this)" class="animation" ng-repeat="row in search_result | filter:cacheTemplate track by $index">
<td class="properties">{{row.name}}</td>
<td class="properties" ng-if="isArray(row.contact)" ng-click="row.close!='disable' && row.show!=true ? row.show=true : null" colspan="{{row.show ? 2 : 1}}">
<div ng-show="!row.show" ng-class="{multi_close : isMulti(row)}">{{row.contact[0].name}}</div>
<div ng-repeat="ctx in row.contact track by $index" class="matrix_row multi_cell" style="line-height: 3; width: 100%; position: relative;" ng-show="row.show" ng-click="row.close!='disable' ? alert('загрузка контакта '+ ctx.name) : null">
<div style="display: inline-block; width: 49%;">{{ctx.name}}</div>
<div style="display: inline-block; width: 49%;">{{ctx.phone}}</div>
<div class="block" ng-if="$index==row.contact.length-1" ng-mouseover="row.close='disable'" ng-mouseleave="row.close='enable'" ng-click="row.close!='enable'? row.show=false : null"></div>
</div>
</td>
<td class="properties" ng-if="!isArray(row.contact)">{{row.contact}}</td>
<td class="properties" ng-show="!row.show">{{row.company_phone}}</td>
<td class="properties">{{row.Legal_address}}</td>
</tr>
</table>
第二种模式:
<table class="matrix" ng-if="search_result_type=='find_calculation'">
<tr ng-class="{matrix_row: !row.show}" class="animation" ng-click="loadCalculation(row.id)" ng-style="multiStyle(row, this)" ng-repeat="row in search_result | filter:cacheTemplate track by $index">
<td class="properties">{{row.name}}</td>
<td class="properties">{{row.a_limit | currency:'RUB '}}</td>
<td class="properties">{{row.total_price | currency:'RUB '}}</td>
<td class="properties">{{row.amount}}</td>
<td class="properties">{{row.date}}</td>
</tr>
</table>
最后一个:
<table class="matrix" ng-if="search_result_type=='load_calculation'" ng-repeat="park in parks track by $index" ng-init="parentIndex = $index">
<tbody>
<tr ng-repeat="process in processes | filter : { park: parentIndex } track by $index">
<td class="properties">{{process[1]}}</td>
<td class="properties">{{process[2]}}</td>
<td class="properties">{{process[3]}}</td>
<td class="properties">{{process[4]}}</td>
<td class="properties">{{process[5]}}</td>
<td class="properties">{{process[6]}}</td>
</tr>
</tbody>
</table>
我不是在寻找答案,而是在寻求建议。我需要使用多少个控制器?每个型号一个?如果我使这个html结构完全相同,那会更好吗?
答案 0 :(得分:1)
我只会使用1个控制器,html中有一些内容,如
比你还可以为这个处理相关东西的控制器写一个工厂。 我认为不需要多个控制器,但我想如果您使用一个或多个控制器,它非常依赖于您的代码。