方法一:三目运算符
<input type="text" th:value="${userInfo!=null ?userInfo.phone:''}">
方法二:*{ xx },后台数据要设置为内置对象
<input type="text" class="form-control" th:value="*{qq}">
<input type="text" th:value="${userInfo!=null ?userInfo.phone:''}">
<input type="text" class="form-control" th:value="*{qq}">