背景
ニワトリが先か卵が先かという問題があります。
- AngularJS + ngTables で抱えている困難な問題を説明するために、デモ Webアプリを作成しました。しかし、私のウェブサーバーのログは、私のデモ webappを本当に気にかけている人は誰もいないことを教えてくれます。
- デモ用の webapp plunkerも作成しました。ただし、plunker は私のデモ webappとは異なる動作をします。ということで、この質問。
質問
理由を理解するのを手伝ってください:
- 私のデモ Webアプリは、検索ボックスに文字を入力すると、json データから ngTable をレンダリングします。
- デモ webapp plunkerは、 json データのレンダリングをまったく拒否します。
プランカーが人気だと思います。ただし、デモ webapp plunkerは、webapp のように動作させることができないため、役に立ちません。私は文字通り HTML をデモ webappからplunkerに直接コピーしました。おそらく私は何か間違ったことをしているのですが、何が間違っていたのかを理解するのに助けが必要です (もしあれば)。
明示的な解決
私はFlask + Pythonを使用してjsonデータをレンダリングしています...明示的な修正は...
from functools import update_wrapper
from datetime import datetime, timedelta
from json import dumps
from flask import Response, Flask, redirect, url_for, abort, render_template, flash
## Other imports here...
def crossdomain(origin=None, methods=None, headers=None,
max_age=21600, attach_to_all=True,
automatic_options=True):
if methods is not None:
methods = ', '.join(sorted(x.upper() for x in methods))
if headers is not None and not isinstance(headers, basestring):
headers = ', '.join(x.upper() for x in headers)
if not isinstance(origin, basestring):
origin = ', '.join(origin)
if isinstance(max_age, timedelta):
max_age = max_age.total_seconds()
def get_methods():
if methods is not None:
return methods
options_resp = current_app.make_default_options_response()
return options_resp.headers['allow']
def decorator(f):
def wrapped_function(*args, **kwargs):
if automatic_options and request.method == 'OPTIONS':
resp = current_app.make_default_options_response()
else:
resp = make_response(f(*args, **kwargs))
if not attach_to_all and request.method != 'OPTIONS':
return resp
h = resp.headers
h['Access-Control-Allow-Origin'] = origin
h['Access-Control-Allow-Methods'] = get_methods()
h['Access-Control-Max-Age'] = str(max_age)
if headers is not None:
h['Access-Control-Allow-Headers'] = headers
return resp
f.provide_automatic_options = False
return update_wrapper(wrapped_function, f)
return decorator
### Use @crossdomain() decorator to fix my plunker's ajax request
@app.route('/demo/api/v1/data01', methods=['GET'])
@crossdomain(origin='*')
#@login_required
def send_all_tasks():
"""Send all tasks back to AngularJS"""
retval = [
{'Column02': 'shines', 'Column03': 'paycheck', 'Column01': 'days'},
{'Column02': 'erg', 'Column03': 'gag', 'Column01': "emotion's"},
]
return Response(dumps(retval), mimetype='application/json')