我使用CoreUI(角度6版本)来创建一个简单的面板。
我需要一个日期选择器,但无法设法找到它。
角材料可能是一个不错的解决方案,但我没有设法将其包括在内-看起来存在一些基本冲突。
任何简单的解决方案?
答案 0 :(得分:0)
您可以添加 ngx-bootstrap
,它具有与Bootstrap V3和V4兼容的BootStrap日期选择器。
您可以在此处检查它:https://valor-software.com/ngx-bootstrap/#/datepicker
要安装 ngx-bootstrap,请运行以下命令
ng add ngx-bootstrap --component datepicker
然后将以下代码添加到您的 AppModule
import { BsDatepickerModule } from 'ngx-bootstrap/datepicker';
@NgModule({
imports: [BsDatepickerModule.forRoot(),...]
})
export class AppModule(){}
示例用法(在模板):
<input type="text" placeholder="Datepicker" class="form-control" bsDatepicker>
答案 1 :(得分:0)
您安装日期选择器软件包:
npm install --save angular-bootstrap-datetimepicker引导时刻打开图标
def create_message(sender, to, cc, bcc, subject, message_text, file=None, thread=None):
message = MIMEMultipart()
message['to'] = to
if cc:
message['cc'] = cc
if bcc:
message['bcc'] = bcc
message['from'] = sender
message['subject'] = subject
msg = MIMEText(message_text, 'html')
message.attach(msg)
if file:
message = attach_file(message, file)
output = {'raw': base64.urlsafe_b64encode(message.as_string().encode()).decode()}
if thread:
output['threadId'] = thread
return output