AngularJS Double Curly braces not working in Flask App.

It was recently that I tried to use AngularJS with Python Flask web application. But it didn’t worked out straight away.

While trying to browse the HTML template files straight from the browser everything worked fine but it rendered nothing while run using Flask server. And there was not a single error in the browser console too. So, it was obvious it had something to do with Python Flask.

Also read : Creating a Web App using Python Flask and MySQL.

The Problem :

Let’s start by creating a simple Python Flask app. Make sure you have python and flask installed. Create a project directory called FlaskAngularApp. Inside the project directory create a file called app.py.

from flask import Flask, render_template
app = Flask(__name__)

@app.route("/")
def showDefault():
    return render_template('index.html')

if __name__ == "__main__":
    app.run()

Create a folder called templates inside the project folder and add the index.html file. App the following code to index.html file :

<!doctype html>
<html lang="en">

<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <title>AngularJS Flask App</title>
    <link rel="stylesheet" href="static/base.css">
    <script type="text/javascript" src="static/js/angular.js"></script>

    <script type="text/javascript">
        angular.module('myApp', [])
            .controller('myCtrl', ['$scope', function ($scope) {
                $scope.message = "Howdy !!";
            }])
    </script>
</head>

<body ng-app="myApp">
    <div ng-controller="myCtrl">
        <span></span>
    </div>
</body>
</html>

Now if you save the changes and try running the python flask app, the url http://localhost:5000/showDefault wouldn’t display the message.

Why AngularJS Expression Doesn’t Work in Python Flask

In python flask we have used render_templates for rendering the templates. By default Flask uses Jinja2 engine to render the templates and Jinja2 also uses double curly braces to insert values. Hence, AngularJS Not Working in Python Flask web app.

Solution to the Problem

The ideal solution to the above problem is to modify the start and end interpolation tags in AngularJS, so that it doesn’t use double curly braces. You can do that using the interpolateProvider service. Modify the AngularJS code as shown :

angular.module('myApp', [])
    .controller('myCtrl', ['$scope', function($scope) {
        $scope.message = "Howdy !!";
    }])
    .config(function($interpolateProvider) {
        $interpolateProvider.startSymbol('//').endSymbol('//');
    });

As seen in the above code, we have modified the interpolation start and end with a double forward slash instead. Inside the HTML code, modify the span as shown:

<body ng-app="myApp">
    <div ng-controller="myCtrl">
        <span>Message is //message//</span>
    </div>
</body>

Another solution would be to enclose the AngularJS double curly brace in single quotes and pass it in the Jinja2 double curly braces.

<body ng-app="myApp">
    <div ng-controller="myCtrl">
        <span>Message is {{ '{{message}}' }}</span>
    </div>
</body>

Wrapping It Up

In this article we saw, why AngularJS Not Working in Python Flask because of the double curly brace issue. We saw how to solve the double curly brace issue by modifying the start and end tag using the interpolateProvider service. Have you guys encountered any other issue while trying to use AngularJS in Python Flask. Do let us know in the comments below.