ng-Grid'Selection'不会在使用Flask的浏览器中显示

时间:2013-03-02 15:38:27

标签: python angularjs flask

在pluker上使用Master / Details示例 http://plnkr.co/edit/CncDWCktXTuBQdDVfuVv?p=preview

我复制了everthing本地文件,只是启动了html 在firefox和chrome中。一切正常。

但是当我尝试通过Flask python服务器服务页面时。一世 不要在html中看到选择作为输出。它看起来像{{?? }} 没有出现......

app.py:修剪烧瓶应用程序

from flask import Flask, render_template, request, json, Response

app = Flask(__name__)
DEBUG = True

@app.route("/index", methods=['GET', 'POST'])
def selected_version():
    return render_template("index.html")

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

index.html:

<!DOCTYPE html>
<html ng-app="myApp">
    <head lang="en">
        <meta charset="utf-8">
        <title>Custom Plunker</title>  
        <link rel="stylesheet" type="text/css" href="http://angular-ui.github.com/ng-grid/css/ng-grid.css" />
        <link rel="stylesheet" type="text/css" href="../static/css/style.css" />
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
        <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.min.js"></script>
        <script type="text/javascript" src="http://angular-ui.github.com/ng-grid/lib/ng-grid.debug.js"></script>
        <script type="text/javascript" src="../static/js/newAppMain.js"></script>
    </head>
    <body ng-controller="MyCtrl">
        <div class="gridStyle" ng-grid="gridOptions"></div>
        <div class="selectedItems"> {{mySelections}} </div>
    </body>
</html>

index.html的来源

   <!DOCTYPE html>
    <html ng-app="myApp">
        <head lang="en">
            <meta charset="utf-8">
            <title>Custom Plunker</title>  
            <link rel="stylesheet" type="text/css" href="http://angular-ui.github.com/ng-grid/css/ng-grid.css" />
            <link rel="stylesheet" type="text/css" href="../static/css/style.css" />
            <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
            <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.2/angular.min.js"></script>
            <script type="text/javascript" src="http://angular-ui.github.com/ng-grid/lib/ng-grid.debug.js"></script>
            <script type="text/javascript" src="../static/js/newAppMain.js"></script>
        </head>
        <body ng-controller="MyCtrl">
            <div class="gridStyle" ng-grid="gridOptions"></div>
            <div class="selectedItems"></div>
        </body>
    </html>

0 个答案:

没有答案