내 연락처 정보
우편메소피아@프로톤메일.com
2024-07-12
한어Русский языкEnglishFrançaisIndonesianSanskrit日本語DeutschPortuguêsΕλληνικάespañolItalianoSuomalainenLatina
프로젝트는 다음 코드와 같은 팝업 프롬프트를 반환해야 합니다.
const onProductSubmit = async () => {
const followById = await Open1688Api.updateProductFollowById(formData);
console.log('followById : ' + followById.toString())
alert(followById)
}
출력 약속
인터페이스를 호출한 후에는 결과가 반환되지 않습니다.
비동기를 추가하고 기다립니다
const onProductSubmit = async () => {
const followById = await Open1688Api.updateProductFollowById(formData);
console.log('followById : ' + followById.toString())
alert(followById)
}