gpt4 book ai didi

javascript - 隐藏: in title when no angular query has been made

转载 作者:行者123 更新时间:2023-11-28 08:52:04 25 4
gpt4 key购买 nike

目前我正在使用:

<title ng-bind-template="FuturePhones: {{query}}">FuturePhones</title>

但这意味着当页面加载时标题将是:

FuturePhones:

如果我在 Controller 中查询“iPhone”,我会得到标题:

FuturePhones: iPhone

如何以最简单的方式隐藏 : 直到查询完成?

  <title ng-bind-template="FuturePhones {{query ? ':'+query : ''}}">FuturePhones</title>

不起作用,它破坏了查询...查询来自:

<b>Search:</b><input ng-model="query" placeholder="Find...">

最佳答案

使用简单的三元运算符:

<title ng-bind-template="FuturePhones{{query ? ': ' + query : ''}}">FuturePhones</title>

关于javascript - 隐藏: in title when no angular query has been made,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19025740/

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