我正在使用待办事项Web应用程序,并且让用户输入来自here的带有自定义引导日期时间选择器的事件日期时间。我在格式为MM / DD / YY hh:mm A的表单上有自定义小部件。但是,Django不接受该表单。 asked也是一个类似的问题,但是我不想覆盖默认的DateTimeInput,而是希望表单以某种格式显示,但以默认格式存储在数据库中。我正在考虑使用小部件调整来自定义选择器,但我不知道如何以默认格式存储它。最好的方法是什么?
Forms.py
from bootstrap_modal_forms.forms import BSModalForm
from .widgets import BootstrapDateTimePickerInput
from bootstrap_datepicker_plus import DateTimePickerInput
from .models import ToDoItem
class NewEventForm(BSModalForm):
class Meta:
model = ToDoItem
fields = ['title', 'description', 'start_time', 'end_time', 'remind_time']
widgets = {
'start_time': DateTimePickerInput(
options={"format": "MM/DD/YYYY hh:mm A"}
),
'end_time': DateTimePickerInput(
options={"format": "MM/DD/YYYY hh:mm A"}
),
'remind_time': DateTimePickerInput(
options={"format": "MM/DD/YYYY hh:mm A"}
),
}
事件形式:
{% load bootstrap4 %}
{% load static %}
{% bootstrap_css %}
{% bootstrap_javascript jquery='full' %}
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<!-- Custom Stylesheet -->
<link rel="stylesheet" type="text/css" href="{% static 'main/main.css' %}">
<!-- Moment.js -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.23.0/moment.min.js" integrity="sha256-VBLiveTKyUZMEzJd6z2mhfxIqz3ZATCuVMawPZGzIfA=" crossorigin="anonymous"></script>
{{ form.media }}
</head>
<body>
<form method="POST" action="">
{% csrf_token %}
<div class="modal-header">
<h5 class="modal-title">New Event</h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<fieldset class="form-group">
{% bootstrap_form form %}
</fieldset>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="submit-btn btn btn-primary">Create</button>
</div>
</form>
</body>
</html>
答案 0 :(得分:1)
您可以使用至少3个知名的JS日期/时间操纵器和本机堆栈在前端进行操作。而且,您可以在后台使用django的工具,python datetime库,名为dateparse,dateparser,python dateutil等的库进行操作。
这是一个普遍解决的问题(例如针对学校论文):
但是对您有帮助的一件事是,您知道表单字段具有一个称为to_python()
的方法:您可以将DateTimeField子类化并覆盖该方法。
您不必费心回头,但是如果您愿意的话,它会是Widget.format_value()
。
Iso8601是在后端(或实际上在人类不需要看的任何地方)中使用的最佳格式。