私の連絡先情報
郵便メール:
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)
}