JSFiddle - React, Tailwind, and code Playground

by kukicvladimir

HTML

<div ng-controller="MyCtrl">
  <li *ngFor="let form of data">
    <ng-template *ngFor = "let item of  {{form.field_data | splitAndGet : ';'}}">
      {{form.idform_data}} - {{form.form_name}} -
      {{form.field_name}} - {{form.field_type}} -
      {{form.field_desc}} -

      {{item}}
  </ng-template>
   </li>
 </div>

JavaScript

var myApp = angular.module('myApp',[]);

angular.module('myApp',[]).filter('splitAndGet', function(){
    return function(items, name){
        return '';
    };
});

angular.module('myApp',[]).controller('MyCtrl', function($scope) {
});