Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/angularjs/24.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Angularjs 引导用户界面弹出框未显示_Angularjs_Angular Ui Bootstrap_Popover - Fatal编程技术网

Angularjs 引导用户界面弹出框未显示

Angularjs 引导用户界面弹出框未显示,angularjs,angular-ui-bootstrap,popover,Angularjs,Angular Ui Bootstrap,Popover,我对Bootstrap-UI()中的popover指令有问题 由于某种原因,popover没有出现。 我有一个ng,如果用户执行某个操作,则该条件变为真,此时popover被添加到表中某个单元格的元素中 我尝试了不使用ng if的popover选项,但它确实出现了。所以它一定是ng if和popover指令的组合 <td> <p ng-if="transaction.resolution == 'INCORRECT_DATA'" class="error-text" pop

我对Bootstrap-UI()中的popover指令有问题

由于某种原因,popover没有出现。 我有一个ng,如果用户执行某个操作,则该条件变为真,此时popover被添加到表中某个单元格的元素中

我尝试了不使用ng if的popover选项,但它确实出现了。所以它一定是ng if和popover指令的组合

<td>
  <p ng-if="transaction.resolution == 'INCORRECT_DATA'" class="error-text" popover="{{transaction.reasons}}" popover-trigger="mouseenter" popover-placement="top" popover-popup-delay="500">{{transaction.amount * transaction.currency.rate | number: 2}}</p>
  <p ng-if="transaction.resolution != 'INCORRECT_DATA'" class="info-text">{{transaction.amount * transaction.currency.rate | number: 2}}</p>
</td>

{transaction.amount*transaction.currency.rate | number:2}

{{{transaction.amount*transaction.currency.rate}编号:2}


请放置更多代码或创建
jsfiddle
。。