Questions tagged «ng-bootstrap»

8
“ ng-bootstrap”和“ ngx-bootstrap”有什么区别?
“ ng-bootstrap”和“ ngx-bootstrap”有什么区别?它们彼此相关吗?还是仅仅是并发实现? 是否有人与他们一起工作过并且可以给出/说明两者的利弊? “ ng-bootstrap”是指https://ng-bootstrap.github.io/#/home和 带有“ ngx-bootstrap”的意思是http://valor-software.com/ngx-bootstrap/。 两者都与Angular 4(而不是AngularJS!)和Bootstrap 4有关。 请注意,这不是ngx-bootstrap和ng2 bootstrap之间的区别的重复问题吗?。

4
ngFor内部的动态模板参考变量(Angular 9)
如何在元素内声明动态 模板引用变量ngFor? 我想使用ng-bootstrap中的popover组件,弹出代码(带有HTML绑定)如下所示: <ng-template #popContent>Hello, <b>{{name}}</b>!</ng-template> <button type="button" class="btn btn-secondary" [ngbPopover]="popContent" popoverTitle="Fancy content"> I've got markup and bindings in my popover! </button> 如何将这些元素包装在里面ngFor? <div *ngFor="let member of members"> <!-- how to declare the '????' --> <ng-template #????>Hello, <b>{{member.name}}</b>!</ng-template> <button type="button" class="btn btn-secondary" [ngbPopover]="????" popoverTitle="Fancy content"> I've got markup and bindings …

8
安装ng bootstrap并编译后,出现此错误
node_modules/@ng-bootstrap/ng-bootstrap/accordion/accordion.d.ts:191:9中的错误-TS1086错误:无法在环境上下文中声明访问器。 191设置ngbPanelToggle(面板:NgbPanel); ~~~~~~~~~~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/buttons/checkbox.d.ts:28:9-错误TS1086:无法在环境上下文中声明访问器。 28 set focus(isFocused:boolean); ~~~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/buttons/radio.d.ts:14:9-错误TS1086:无法在环境上下文中声明访问器。 14 get Disabled():布尔值; ~~~~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/buttons/radio.d.ts:15:9-错误TS1086:无法在环境上下文中声明访问器。 15设置为禁用(isDisabled:布尔值); ~~~~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/buttons/radio.d.ts:61:9-错误TS1086:无法在环境上下文中声明访问器。 61设定值(value:any); ~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/buttons/radio.d.ts:65:9-错误TS1086:无法在环境上下文中声明访问器。 65 set disable(isDisabled:boolean); ~~~~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/buttons/radio.d.ts:66:9-错误TS1086:无法在环境上下文中声明访问器。 66 set focus(isFocused:boolean); ~~~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/buttons/radio.d.ts:67:9-错误TS1086:无法在环境上下文中声明访问器。 67被检查():布尔值; ~~~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/buttons/radio.d.ts:68:9-错误TS1086:无法在环境上下文中声明访问器。 68 get disable():布尔值; ~~~~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/buttons/radio.d.ts:69:9-错误TS1086:无法在环境上下文中声明访问器。 69 get value():任何; ~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/buttons/radio.d.ts:70:9-错误TS1086:无法在环境上下文中声明访问器。 70 get nameAttr():字符串; ~~~~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/carousel/carousel.d.ts:42:9-错误TS1086:无法在环境上下文中声明访问器。 42设置间隔(值:数字);~~~~~~~~ node_modules/@ng-bootstrap/ng-bootstrap/carousel/carousel.d.ts:43:9-错误TS1086:无法在环境上下文中声明访问器。 …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.