问题描述
vue2项目中视图使用可选链
#失效代码
<template>
...
{
{
detail?.bloodRoutineExamination?.Hb}}
...
</teamplate>
原因分析:
node版本过旧不支持视图中使用可选链
解决方案:
使用lodash插件中的get方法
#安装lodash
npm install lodash
#lodash使用get方法教程
get(object, path, [defaultValue])
1.object (Object): 要检索的对象。
2.path (Array|string): 要获取属性的路径。
3.[defaultValue
文章评论