使用JS库axios,为什么.then / .catch部分中的代码最终会被导出?
save(data) {
axios.put('/api/persons/1', data)
.then(response => {
alert('hello')
})
.catch(function(error) {
alert('goodbye')
})
alert('world')
}
此功能显示第一个警报'世界'和第二个你好'
答案 0 :(得分:2)
因为LocalDateTime d = ISODateTimeFormat.localDateOptionalTimeParser().parseLocalDateTime(input);
DateTimeFormatter fmt = DateTimeFormat.forPattern("dd/MM/yyyy");
System.out.println(fmt.print(d));
的处理方式与alert('world')
相同。