如果我有這樣的鏈接<a href="/account/user">Get User Data</a>
誰指向我自己的服務器內的視圖,有什麼辦法發送一個json對象(也許只是可能與ajax?)到另一個外部服務器並檢索答案?事情是這樣的:Django:是否有可能創建併發送Json從一個視圖到另一個服務器?
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,但我只是想知道如果我能做到這一點這樣......
在此先感謝。