1、进入页面调用/info/registration/detail接口,返回null则未报名,否则已报名 2、如果未报名,调用/a-user/detail接口,传入needFullPhone,值为1,获得完整手机号回填到输入框代码
时间: 2024-01-06 14:04:26 浏览: 57
好的,以下是示例代码,供你参考:
```javascript
// 调用 /info/registration/detail 接口,判断用户是否报名
fetch('/info/registration/detail')
.then(response => response.json())
.then(data => {
if (data === null) {
// 用户未报名,调用 /a-user/detail 接口以获取完整手机号
fetch('/a-user/detail?needFullPhone=1')
.then(response => response.json())
.then(data => {
// 将完整手机号回填到输入框中
document.getElementById('phone-input').value = data.fullPhone;
})
.catch(error => console.error(error));
}
})
.catch(error => console.error(error));
```
请注意,这只是一个示例代码,实际应用中可能需要根据具体情况进行修改。此外,由于涉及接口调用和数据处理,建议在开发过程中注意安全性和数据保护。
阅读全文