gpt4 book ai didi

javascript - Angular,ng-repeat在同一段中不起作用

转载 作者:行者123 更新时间:2023-11-30 11:46:47 24 4
gpt4 key购买 nike

我正在尝试使用 ng-repeat一段里面<p>标签。但它不起作用。下面是我的代码:

  <div class="section">
<p class="text-left">
<strong>Designation:</strong>{{showData.Designation}}&nbsp;&nbsp;
<strong>Company:</strong> &nbsp;{{showData.Company}}&nbsp;&nbsp;
<b ng-repeat="location in showData.City">Location:</b>&nbsp;{{location}}</p>
</div>

但是如果我想执行 ng-repeat在下一段中它正在工作。但我希望整个事情都在一条线上。任何建议,为什么它不起作用以及我应该如何放置 ng-repeat在上面的代码中。

编辑:我尝试了一个答案中的以下代码

<b ng-repeat="location in showData.City">Location: {{location}}</b>

但是它导致了两个问题

首先

I expect result to be like Location: Banglore, India

while it is giving Location: Banglore, Location: India

其次,我不希望我的值以粗体显示。

最佳答案

你需要把它包在</b>里面

<b ng-repeat="location in showData.City">Location: {{location}}</b>

DEMO

关于javascript - Angular,ng-repeat在同一段中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40722569/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com