I would like to use the {{}} interpolation operator in a <script> tag in a .html file using Angular 1.5 as shown with the ::job.name example below. Would appreciate suggestions. The JSON object must be declared inside the <script> tag as shown below
The use of job.brand_name works below, but job.name does not.
<script type="application/json"> {
"title" : "{{::job.name}}"
}
</script>
<p>{{::job.brand_name}}</p>