2024-07-12
한어Русский языкEnglishFrançaisIndonesianSanskrit日本語DeutschPortuguêsΕλληνικάespañolItalianoSuomalainenLatina
Das Projekt muss eine Popup-Eingabeaufforderung mit dem folgenden Code zurückgeben:
const onProductSubmit = async () => {
const followById = await Open1688Api.updateProductFollowById(formData);
console.log('followById : ' + followById.toString())
alert(followById)
}
Leistungsversprechen
Nach dem Aufruf der Schnittstelle wird das Ergebnis nicht zurückgegeben.
Async hinzufügen und warten
const onProductSubmit = async () => {
const followById = await Open1688Api.updateProductFollowById(formData);
console.log('followById : ' + followById.toString())
alert(followById)
}