gpt4 book ai didi

python - 使用 Django Tables2 为对话框添加单击事件

转载 作者:太空宇宙 更新时间:2023-11-03 15:02:55 27 4
gpt4 key购买 nike

我正在尝试使用 Django Tables2 创建一个单击事件,以便每当有人单击一行中的删除链接时,它都会在删除该行之前创建一个用于确认的对话框。这是我的代码:

模型.py

class Schedules(models.Model):
course_name = models.CharField(max_length=128, choices=COURSE_NAME_CHOICES, default='a-plus')
location = models.CharField(max_length=128, choices=LOCATION_CHOICES, default='south_plainfield')
room = models.CharField(max_length=128, choices=ROOM_CHOICES, default='A')
start_date = models.DateField(auto_now=False, auto_now_add=False, default=datetime.date.today)
start_time = models.CharField(max_length=128, choices=START_TIME_CHOICES, default='eight-thirty am')
end_time = models.CharField(max_length=128, choices=END_TIME_CHOICES, default='eight-thirty am')
instructor = models.CharField(max_length=128, choices=INSTRUCTOR_CHOICES, default='adewale')
total_hours = models.CharField(max_length=128, choices=TOTAL_HOURS_CHOICES, default='six')
hours_per_class = models.CharField(max_length=128, choices=HOURS_PER_CLASS_CHOICES, default='four_and_half')
frequency = models.CharField(max_length=128)
status = models.CharField(max_length=128, choices=STATUS_CHOICES)
interval = models.CharField(max_length=128, choices=INTERVAL_CHOICES, default='1 day')
initiated_by = models.CharField(max_length=128, null=True)
schedule_id = models.IntegerField(default=0)

表.py

class ScheduleListTable(tables.Table):
change = tables.TemplateColumn('<a href="/schedule/update_schedule/{{ record.id }}">Update</a> / Cancel / Event / '
'<a href="/schedule/delete_schedule/{{ record.id }}"
onclick="return confirm("Are you sure you want to delete this?")">Delete</a>',
verbose_name=u'Change', )
class Meta:
model = Schedules
fields = ('id', 'course_name', 'start_date', 'start_time', 'hours_per_class', 'instructor', 'change',)
attrs = {"class": "paleblue"}

View .py

def schedule_List(request):
context_dict = {}
schedule_list = Schedules.objects.order_by('start_date')
table = ScheduleListTable(schedule_list)
context_dict['table'] = table
return render(request, "schedule/schedule_list.html", context_dict)

schedule_list.html

<div id="schedule_list_table">
{% if table %}
{% render_table table %}
{% endif %}
</div>

由于某种原因,我无法使出现确认对话框的onclick事件,而直接删除。我认为它在tables.py中写得不正确,但我不知道在这种情况下如何正确编写它。还是我需要做点别的事情?

最佳答案

查看渲染的 html,例如使用浏览器检查上下文菜单选项。我想您可以看到您使用的双引号有问题。

onclick 属性用双引号括起来,但作为参数传递给 confirm() 的消息也用双引号括起来。这会导致您的浏览器将该属性解释为 `onclick="return recognize("并忽略它无法理解哪条消息是您的消息的乱码。

您可以通过使用单引号将消息参数括在 confirm() 中来解决此问题,或者通过在您使用的语法中转义它们 (\'),或者通过使用这样的三引号:

template_code = '''
<a href="/schedule/update_schedule/{{ record.id }}">Update</a> / Cancel / Event /
<a href="/schedule/delete_schedule/{{ record.id }}"
onclick="return confirm('Are you sure you want to delete this?')">Delete</a>'''

关于python - 使用 Django Tables2 为对话框添加单击事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44911679/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com