I have an AngularJS expression enwrapped in a <a>
tag. The expression is evaluating an allow
variable.
<a href="#" >{{allow}}</a>
In case allow
is null
or undefined
Angular shows nothing. Instead I would like to display a default string.
To give you a better understanding, this is what I'm trying to achieve.
The modal on the right is generated from the form on the left. If the user didn't enter any text for "Allow Button Text" and "Disallow Button Text" I want to display ALLOW
and DON'T ALLOW
respectively.
Here is my code:
<div id="test2" class="row" ng-app="">
<label for="title">Title</label>
<input type="text" name="title" ng-model="title" placeholder="https:/your website.com/wants to:">
<label for="title">Allow Button Text</label>
<input type="text" ng-model="allow" placeholder="ALLOW">
<label for="title">Disallow Button Text</label>
<input type="text" ng-model="disallow" placeholder="DONT ALLOW">
<p>{{title}}</p>
<a href="" >{{disallow}}</a>
<a href="" >{{allow}}</a>
If by placeholder you mean default value until
allow
is specified, then it's quite easy: