我的python燒瓶應用程序中有三個文件構建在前端的角js上。Python燒瓶+角度錯誤:'StoreController未定義'
app.py
import json
import flask
import numpy as np
app = flask.Flask(__name__)
@app.route("/")
def index():
return flask.render_template("index.html")
if __name__ == "__main__":
import os
port = 80
# Open a web browser pointing at the app.
os.system("open http://localhost:{0}".format(port))
# Set up the development server on port 80.
app.debug = True
app.run(port=port)
的index.html
<!DOCTYPE html>
<html ng-app="gemStore">
<head>
<script src='https://ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.min.js'></script>
<script type="text/javascript" src="static/app.js"></script>
</head>
<body ng-controller="StoreController as store">
<div class="list-group-item">
<h3>{{store.product.name}} <em class="pull-right">25</em></h3>
</div>
</body>
</html>
app.js
(function() {
var app = angular.module('gemStore', []);
app.controller('StoreController', function(){
this.product = gem;
}
);
var gem = {
name: "Chicken",
price: 123.11,
color: "White"
};
})();
當我運行這個應用A n,下列行的存在會導致錯誤:
<h3>{{store.product.name}} <em class="pull-right">25</em></h3>
我得到一個錯誤說。 jinja2.exceptions.UndefinedError UndefinedError:「商店」是未定義
這很奇怪,因爲相同的前端應用程序將正常運行,如果我沒有使用蟒蛇燒瓶服務器。 此外,我檢查了HTML文件通過測試警報正確引用app.js文件。
'flask.render_template( 「index.html的」)'你需要傳遞參數也 – Hackaholic
哪個參數? – user3422637
for store.product.name,您在模板中使用 – Hackaholic