自分のサーバー内のビュー<a href="/account/user">Get User Data</a>
を指すこのようなリンクがある場合、json オブジェクトを (おそらく ajax を使用して) 別の外部サーバーに送信し、回答を取得する方法はありますか? このようなもの:
from django.shortcuts import render
def profile(request):
#send a json object to another server like http://www.myotherserver.com/user
#get the answer and process it
return render(request, 'accounts/profile.html' ,
{'profile_user': data_from_the_external_server})
上記はもちろんjquery-ajaxで実装できますが、この方法で実装できるかどうか疑問に思っていました...
前もって感謝します。