The Angularjs User selector instruction is analyzed in this article. Share to everyone for your reference, specific as follows:
When issuing a publication, we need to use a user selector that is often needed, and the user's data is typically stored in the following ways:
User 1, User 2, User 3
We can use the angular instruction to implement the selector.
Template URL
<div>
<span ng-repeat= "item in Names" > {{item}}<a class= "btn btn-xs fa-remove" title= "
remove this item" ng-click= "Remove ($index)" ></a>
</span>
<a class= "btn btn-sm btn-primary Fa-search" Ng-click= "Selectuser ()" > Selection </a>
</div>
In the instruction, a separate scope is used, and the incoming data is a comma-separated string, which we use to manipulate the array.
The trick here is to convert between string and array.
This uses the instruction independent scope, uses the watch array to carry on the operation, needs to note that if monitors the array, needs to use the depth monitoring.
I hope this article will help you to Angularjs program design.