BsInlineDatepicker在ngx-bootstrap中不起作用

时间:2019-03-12 11:03:52

标签: angular datepicker ngx-bootstrap

我想使用内联日期选择器: https://valor-software.com/ngx-bootstrap/#/datepicker#inline-datepicker

但这给我一个错误:由于它不是'bs-datepicker-inline'的已知属性,因此无法绑定到'bsValue'。

public function xss_clean($str, $is_image = false)
 {
...
if (preg_match('/script|xss/i', $str)) {
                $str = preg_replace('#</*(?:script|xss).*?>#si', '[removed]', $str);
            }
...

}

这是代码的package.json文件。

<div class="row">
  <div class="col-xs-12 col-12 col-md-4 form-group">
    <bs-datepicker-inline [bsValue]="bsInlineValue"></bs-datepicker-inline>
 </div>
</div>

error message

I am adding stackblitz link here.

1 个答案:

答案 0 :(得分:0)

您应该将需要的模块注入项目的db.Collection.aggregate([ { $project: { all_bills: ‘$all_count’, settled_bills: { $size: ’$settled’ }, overdue_bills: { $size: ‘$overdue’ }, }, $project: { settled_percentage: { $divide : ['$settled_bills','$overdue_bills'] } } } ])

NgModule

更新:

请按如下所示更新您的软件包依赖项,

Here is working stackblitz link

import { BsDatepickerModule } from 'ngx-bootstrap/datepicker';

@NgModule({
  imports: [BsDatepickerModule.forRoot(),...]
})
export class AppModule(){}