반응형
Flask Python, 목록을 반환하거나 Ajax 호출에 받아쓰려고 합니다.
플라스크 앱 내에서 다음과 같은 아약스 호출이 있습니다.
$.ajax({
url: "{{ url_for( 'bookings.get_customer' ) }}",
type: "POST",
data: nameArray,
success: function( resp ){
console.log( resp )
}
})
보시다시피, 저는 고객을 반환하거나 반환하지 않는 제 몽고 데이터베이스를 검색할 배열을 전달하고 있습니다.
따라서 이 Ajax 호출을 처리하는 pythondef는 다음과 같습니다.
@bookings.route( '/get_customer', methods=[ 'POST' ] )
def get_customer():
name = {}
for key, value in request.form.items():
name[ key ] = value
customer_obj = customer_class.Customer()
results = customer_obj.search_customer( name )
return results
인수를 위해 customer_obj 호출이 다음 목록을 반환한다고 가정합니다.
[{'customer': {
u'first_name': u'Dave',
u'tel': u'0121212121458',
u'country': u'UK',
u'address2': u'Townington',
u'address3': u'Cityville',
u'email': u'dave@smith.com',
u'postcode': u'A10 5BC',
u'address1': u'10 High Street',
u'second_name': u'Smith'
},
'customer_id': u'DaveSmithA10 5BCCat_Vegas1346244086'
}]
내가 이것을 아약스 호출로 되돌리려고 할 때.
return results
다음 오류가 발생합니다.
TypeError: 'list' object is not callable
다음은 추적입니다.
Traceback (most recent call last):
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1701, in __call__
return self.wsgi_app(environ, start_response)
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1689, in wsgi_app
response = self.make_response(self.handle_exception(e))
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1687, in wsgi_app
response = self.full_dispatch_request()
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1361, in
full_dispatch_request
response = self.make_response(rv)
File "/usr/local/lib/python2.7/dist-packages/flask/app.py", line 1450, in make_response
rv = self.response_class.force_type(rv, request.environ)
File "/usr/local/lib/python2.7/dist-packages/werkzeug/wrappers.py", line 711, in
force_type
response = BaseResponse(*_run_wsgi_app(response, environ))
File "/usr/local/lib/python2.7/dist-packages/werkzeug/test.py", line 818, in
run_wsgi_app
app_iter = app(environ, start_response)
TypeError: 'list' object is not callable
제안할 사람이 있습니까?
감사해요.
플라스크는 당신이 돌아올 것이라고 기대하지 않습니다.list
보기 기능에서 객체를 찾습니다. 시도해 보십시오.jsonify
이전:
from flask import jsonify
@bookings.route( '/get_customer', methods=[ 'POST' ] )
def get_customer():
name = {}
for key, value in request.form.items():
name[ key ] = value
customer_obj = customer_class.Customer()
results = customer_obj.search_customer( name )
return jsonify(customers=results)
josonify works..하지만 'jon' 키 없이 배열을 전달하려면 python의 json 라이브러리를 사용할 수 있습니다.다음 변환은 저에게 효과가 있습니다.
import json
@app.route('/test/json')
def test_json():
list = [
{'a': 1, 'b': 2},
{'a': 5, 'b': 10}
]
return json.dumps(list)
당신은 해야 합니다.
return jsonify(result=your_result)
또한 정말 도움이 될 수 있는 설명서를 확인하십시오.
언급URL : https://stackoverflow.com/questions/12193013/flask-python-trying-to-return-list-or-dict-to-ajax-call
반응형
'programing' 카테고리의 다른 글
인식할 수 없는 구성 섹션 log4net (0) | 2023.08.01 |
---|---|
유형 오류: 유형 스크립트에서 개체 '[objectArray]'의 읽기 전용 속성 '0'을(를) 할당할 수 없습니다. (0) | 2023.07.27 |
GENERATE ALVERS 쿼리의 from_unixtime에 대한 대안 (0) | 2023.07.27 |
파워셸을 사용하여 CRLF 교체 (0) | 2023.07.27 |
MySQL 저장 프로시저에서 커서 오류 발생 (0) | 2023.07.27 |