Vue中绑定值与字符串拼接以及结合三目表达式实现是否为空判定的使用

场景

若依前后端分离版手把手教你本地搭建环境并运行项目:

https://blog.csdn.net/BADAO_LIUMANG_QIZHI/article/details/108465662

Vue中在调用后台接口的回调方法中将返回值绑定到字符串中。

并且在字符串中可以结合三目表达式判定,如果返回值的某个属性为空则显示空字符串。

注:

博客:
https://blog.csdn.net/badao_liumang_qizhi
关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。

实现

1、使用方式

:title="`字符串${xx}`"

 

2、使用示例

                            getCarContent(param).then((res) => {
                                content = res.data;
                                    str =`
                                        <div class="car_detail">
                                            <div class="car_detail_header">
                                                <p>驾驶员:${content.drivername? content.drivername: ""}</p>
                                                <p>号码:<span id="car_isOnline_sip">${content.sipNumber ? content.sipNumber : ""}</span></p>
                                                <p style="overflow: hidden;text-overflow: ellipsis;white-space: nowrap;-webkit-line-clamp: 3;" title="${content.site}">
                                                    位置:${content.site? content.site: ""}
                                                </p>
                                        `

 

上一篇:crypto_11/25


下一篇:HCIP————IPV6