- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试调试了大约 2 个小时,但没有成功。
这是我的错误:
jinja2.exceptions.UndefinedError jinja2.exceptions.UndefinedError: 'item' is undefined
我的index.html:
<html>
<head>
</head>
<body>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<div ng-app="myApp" ng-controller="myCtrl">
<div ng-repeat="item in questions">
{{item.question}}
</div>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function ($scope, $http) {
$http({
method: "GET",
url: "http://127.0.0.1:5000/questions"
}).then(function mySuccess(response) {
$scope.questions = response.data;
}, function myError(response) {
$scope.myWelcome = response.statusText;
});
});
</script>
</body>
</html>
我的服务器端:
import os
from flask import Flask, request, render_template, Response
from flask_restful import Resource, Api
app = Flask(__name__)
api = Api(app)
question_id_serial = 2
questions = {
1: {
'id': 1,
'question': 'Is this hard?',
},
2: {
'id': 2,
'question': 'Who is going to win the SuperBowl in 2017?',
}
}
answer_id_serial = 6
answers = {
1: {
'id': 1,
'question_id': 1,
'answer': 'Yes',
'count': 0
},
2: {
'id': 2,
'question_id': 1,
'answer': 'No',
'count': 0
},
3: {
'id': 3,
'question_id': 2,
'answer': 'Eagles',
'count': 0
},
4: {
'id': 4,
'question_id': 2,
'answer': 'Patriots',
'count': 0
},
5: {
'id': 5,
'question_id': 2,
'answer': 'Seahawks',
'count': 0
},
6: {
'id': 6,
'question_id': 2,
'answer': 'Broncos'
}
}
class Answer(Resource):
def get(self, answer_id):
return answers[answer_id]
def put(self, answer_id):
answer = answers[answer_id]
data = request.get_json()
values = {k: data.get(k, v) for k, v in answer.items()}
answers[answer_id].update(values)
return values
def delete(self, answer_id):
values = answers[answer_id]
del answers[answer_id]
return values
class Answers(Resource):
def get(self):
return answers.values()
def post(self):
global answer_id_serial
answer_id_serial += 1
data = request.get_json()
values = {
'id': answer_id_serial,
'answer': data['answer'],
'count': data.get('count', 0),
'question_id': data['question_id']
}
answers[answer_id_serial] = values
return values
class Question(Resource):
def get(self, question_id):
data = questions[question_id].copy()
data['answers'] = [ans for ans in answers.values() if ans['question_id'] == question_id]
return data
def put(self, question_id):
question = questions[question_id]
data = request.get_json()
data.pop('answers', [])
values = {k: data.get(k, v) for k, v in question.items()}
questions[question_id].update(values)
values['answers'] = [ans for ans in answers.values() if ans['question_id'] == question_id]
return values
def delete(self, question_id):
values = questions[question_id]
del questions[question_id]
values['answers'] = [ans for ans in answers.values() if ans['question_id'] == question_id]
return values
class Questions(Resource):
def get(self):
output = []
for question in questions.values():
question = question.copy()
question['answers'] = [ans for ans in answers.values() if ans['question_id'] == question['id']]
output.append(question)
return output
def post(self):
global question_id_serial
question_id_serial += 1
data = request.get_json()
values = {
'id': question_id_serial,
'question': data['question']
}
questions[question_id_serial] = values
return values
api.add_resource(Questions, '/questions')
api.add_resource(Question, '/questions/<int:question_id>')
api.add_resource(Answers, '/answers')
api.add_resource(Answer, '/answers/<int:answer_id>')
@app.route('/')
def show_page():
return render_template('index.html')
@app.route('/assets/<path:path>')
def get_resource(path):
mimetypes = {
'.css': 'text/css',
'.html': 'text/html',
'.js': 'application/javascript'
}
content = open(path).read()
return Response(content, mimetype=mimetypes[os.path.splitext(path)[1]])
if __name__ == '__main__':
app.run(debug=True)
最佳答案
这是来自 render_template('index.html')
的 html 吗?
如果是这样,您将无法使用 Flask 渲染模板,然后尝试使用 Angular 再次渲染它。
基本上你的 ng-repeat
不起作用,Flask 无法识别 {{ item }}
,因此出现错误。
关于python - 为什么我可以接收数据但无法正确渲染数据(带有flask-restapi/jinja2的angularjs),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44896176/
我有一个存储结构向量的应用程序。这些结构保存有关系统上每个 GPU 的信息,如内存和 giga-flop/s。每个系统上有不同数量的 GPU。 我有一个程序可以同时在多台机器上运行,我需要收集这些数据
我很好奇 MPI 中缺少此功能: MPI_Isendrecv( ... ); 即,非阻塞发送和接收,谁能告诉我其省略背后的基本原理? 最佳答案 我的看法是 MPI_SENDRECV存在是为了方便那些想
当我用以下方法监听TCP或UDP套接字时 ssize_t recv(int sockfd, void *buf, size_t len, int flags); 或者 ssize_t recvfrom
SUM:如何在 azure 事件网格中推迟事件触发或事件接收? 我设计的系统需要对低频对象状态(创建、启动、检查长时间启动状态、结束)使用react。它看起来像是事件处理的候选者。我想用azure函数
我正在 MPI 中实现一个程序,其中主进程(等级 = 0)应该能够接收来自其他进程的请求,这些进程要求只有根才知道的变量值。如果我按等级 0 进行 MPI_Recv(...),我必须指定向根发送请求的
我正在学习DX12,并在此过程中学习“旧版Win32”。 我在退出主循环时遇到问题,这似乎与我没有收到WM_CLOSE消息有关。 在C++,Windows 10控制台应用程序中。 #include
SUM:如何在 azure 事件网格中推迟事件触发或事件接收? 我设计的系统需要对低频对象状态(创建、启动、检查长时间启动状态、结束)使用react。它看起来像是事件处理的候选者。我想用azure函数
我想编写方法来通过号码发送短信并使用编辑文本字段中的文本。发送消息后,我想收到一些声音或其他东西来提醒我收到短信。我怎样才能做到这一点?先感谢您,狼。 最佳答案 这个网站似乎对两者都有很好的描述:ht
所以我正在用 Java 编写一个程序,在 DatagramSocket 和 DatagramPacket 的帮助下发送和接收数据。问题是,在我发送数据/接收数据之间的某个时间 - 我发送数据的程序中的
我是 Android 编程新手,我正在用 Java 编写一个应用程序,该应用程序可以打开相机拍照并保存。我通过 Intents 做到了,但看不到 onActivityResult 正在运行。 我已经在
我有一个套接字服务器和一个套接字客户端。客户端只有一个套接字。我必须使用线程在客户端发送/接收数据。 static int sock = -1; static std::mutex mutex; vo
我正在尝试使用 c 中的套接字实现 TCP 服务器/客户端。我以这样的方式编写程序,即我们在客户端发送的任何内容都逐行显示在服务器中,直到键入退出。该程序可以运行,但数据最后一起显示在服务器中。有人可
我正在使用微 Controller 与 SIM808 模块通信,我想发送和接收 AT 命令。 现在的问题是,对于某些命令,我只收到了我应该收到的答案的一部分,但对于其他一些命令,我收到了我应该
我用c设计了一个消息传递接口(interface),用于在我的系统中运行的不同进程之间提供通信。该接口(interface)为此目的创建 10-12 个线程,并使用 TCP 套接字提供通信。 它工作正
我需要澄清一下在套接字程序中使用多个发送/接收。我的客户端程序如下所示(使用 TCP SOCK_STREAM)。 send(sockfd,"Messgfromlient",15,0);
我正在构建一个真正的基本代理服务器到我现有的HTTP服务器中。将传入连接添加到队列中,并将信号发送到另一个等待线程队列中的一个线程。此线程从队列中获取传入连接并对其进行处理。 问题是代理程序真的很慢。
我正在使用 $routeProvider 设置一条类似 的路线 when('/grab/:param1/:param2', { controller: 'someController',
我在欧洲有通过 HLS 流式传输的商业流媒体服务器。http://europe.server/stream1/index.m3u8现在我在美国的客户由于距离而遇到一些网络问题。 所以我在美国部署了新服
我有一个长期运行的 celery 任务,该任务遍历一系列项目并执行一些操作。 任务应该以某种方式报告当前正在处理的项目,以便最终用户知道任务的进度。 目前,我的django应用程序和celery一起坐
我需要将音频文件从浏览器发送到 python Controller 。我是这样做的: var xmlHttp = new XMLHttpRequest(); xmlHttp.open( "POST",
我是一名优秀的程序员,十分优秀!