我有两个视图,一个视图接受输入,另一个视图用于确认和执行动作。我的问题是如何从另一个视图和模板确认输入。
这与删除记录时类似。您应该向用户确认他的动作。
这是输入视图。 PreprocessinputationView:
def PreprocessInputationView(request, **kwargs):
proj_pk = kwargs.get('pk')
project = Project.objects.get(id=proj_pk)
df = pd.read_csv(project.base_file)
n_cols = df.keys
context = {}
context['df'] = df
context['n_cols'] = n_cols
context['project'] = project
if request.method == 'POST':
# try:
checked_value = request.POST.getlist(u'predictors')
method = ''.join(request.POST.getlist(u'method'))
if checked_value and method:
context['checked_value'] = checked_value
context['method'] = method
return render(request, 'projects/preprocess/confirm_inputation.html', context)
return render(request, 'projects/preprocess/preprocess_inputation.html', context)
确认视图在此处。 ConfirmInputationView:
def ConfirmInputationView(request, context):
print('method:', context['method'])
project = context['project']
df = pd.read_csv(project.base_file)
n_cols = df.keys
filename = project.base_file.name
tmp = filename.split('/')
filename = str(tmp[1:])
if request.method == 'POST':
# try:
checked_value = context['checked_value']
method = context['method']
if checked_value and (method=='mean'):
df[checked_value].fillna(df[checked_value].mean())
# df.drop(columns=checked_values, inplace=True)
new_df = df.to_csv(index=False)
updated_file = ContentFile(new_df)
updated_file.name = filename
project.base_file = updated_file
project.save()
str_checked_value = ', '.join(checked_value)
context['str_checked_value'] = str_checked_value
if str_checked_value:
messages.success(request, f'Inputation to column(s) {str_checked_value} successful!')
return render(request, 'projects/preprocess/preprocess_inputation.html', context)
确认模板。 Confirm_inputation.html:
{% extends "base.html" %}
{% block page_heading %}
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<h1 class="h3 mb-0 text-gray-800">Delete Project</h1>
</div>
{% endblock page_heading %}
{% block content %}
<div class="jumbotron col-xl-8 col-md-6 mb-1"">
<form method=" POST">
{% csrf_token %}
<fieldset class='form-group'>
<p>
You have chosen <strong>{{ method }}</strong> as an inputation method?
Are you sure you want to proceed?
</p>
</fieldset>
<div class="form-group">
<button class="btn btn-danger float-sm-right mr-1" type="submit">Yes, Delete</button>
<a class="btn btn-secondary float-sm-right mr-1" href="{% url 'project-detail' project.id %}">Cancel</a>
</div>
</form>
</div>
{% endblock content %}
来自PreprocessImputationView
的数据应传递到ConfirmImputationView
进行确认和处理。
答案 0 :(得分:0)
我不确定我是否理解您的问题或确切的问题。因此,我将总结一下我的理解。如果这不适合您的问题,请进一步说明。
您具有视图A(PreprocessInputationView),该视图向用户显示一些值/表格,并允许对A进行一些POST操作。 如果视图A收到POST请求,则您检查表单输入并渲染视图B的模板B。
您呈现的模板B为用户提供了两个选项:接受,触发POST以查看B或拒绝,链接到一些详细信息视图。
我认为您所缺少的是,context
中的render
在渲染后被“丢失”。当用户看到完成的html页面时,该变量不再相关且不可访问。
一种向B视图提供必要的“方法”信息的方法是在B模板中添加一个表单字段,该模板字段具有某种类型的键,供B视图在POST上确定要做什么。就像一个带有数字的隐藏输入字段。每个数字都代表一种方法。