3
Reply

What is the use of Interpolation markup?

Santosh Kumar Adidawarpu

Santosh Kumar Adidawarpu

Feb 11, 2017
917
1

    Compiles a string with markup into an interpolation function. This service is used by the XML compile service for data binding.

    hariharan raju
    October 07, 2017
    0

    Compiles a string with markup into an interpolation function. This service is used by the HTML compile service for data binding.

    Gracy Layla
    September 15, 2017
    0

    $interpolateProvider can be used for configuring the interpolation markup. Defaults to {{ and }} in AngularJS.app.config(function($interpolateProvider) {$interpolateProvider.startSymbol('[[');$interpolateProvider.endSymbol(']]');});This helps in working with Template engines like 'Swig' which uses the '{{' '}}' the double curly braces to display variables in your templates.

    Santosh Kumar Adidawarpu
    February 11, 2017
    0