如果我有一个像这样<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 来实现它,但我只是想知道我是否可以这样做......
提前致谢。