**已关闭。**此问题为not reproducible or was caused by typos。目前不接受答案。
这个问题是由一个打字错误或一个无法再重现的问题引起的。虽然类似的问题在这里可能是on-topic,但这个问题的解决方式不太可能帮助未来的读者。
昨天关门了。
Improve this question
我是一个Python开发初学者。我需要更新几个值 我知道我需要使用Ajax,但是我不知道怎么做。帮助编写一个AJAX脚本,在视图中调用特定的方法
我写过看法
类移动平均(模板视图):模板名称= '移动平均值/平均值. html'
def get(self, request, *args, **kwargs):
return render(request, 'moving_average/average.html')
def post(self, request, *args, **kwargs):
self.symbol = request.POST.get('symbol')
self.interval = request.POST.get('interval')
self.periods = int(request.POST.get('periods')) if request.POST.get('periods') != '' else 0
self.quantity = float(request.POST.get('quantity')) if request.POST.get('quantity') != '' else 0
self.delta = float(request.POST.get('delta').strip('%')) / 100
self.button()
return render(request, 'moving_average/average.html')
1条答案
按热度按时间vsdwdz231#
这里,我们需要两个函数来从AJAX中调用数据:
首先,我们需要在www.example.com文件中创建JsonResponse视图函数views.py。
在www.example.com文件中创建此函数的路径urls.py。
现在,我们创建一些AJAX调用来获取数据,而无需重新加载页面...
好了,你可以走了.