커뮤니티
포인트
쿠폰
내 강의실
국비 신청 내역
증명서
계정
로그아웃
학습 질문
개발 일지
나의 활동
답변 완료
공유하기 버튼을 누르면 에러가 뜹니다
1시간만에 크리스마스 디데이 캘린더 만들기 v0
1주차
북마크
윤*애
댓글
10
추천
0
조회수
41
조회수
41
답변 완료

* 겪고 있는 문제 상황을 최대한 자세하게 작성해주세요.

* 문제 해결을 위해 어떤 시도를 해보았는지 구체적으로 함께 알려주세요.





스파르타 즉문즉답




// 기능2: 공유하기
document.getElementById('shareButton').addEventListener('click', async () => {
  try {
    // Check if the Web Share API is available
    if (!navigator.share) {
      alert('Web Share API is not available on your browser.');
      return;
    }


    // Your share data
    const shareData = {
      title: 'Web Share Example',
      text: 'Check out this web share example!',
      url: window.location.href
    };

Share failed: Failed to execute 'share' on 'Navigator': An earlier share has not yet completed.
    // Invoke the share dialog
    await navigator.share(shareData);
    console.log('Data was shared successfully');
  } catch (err) {
    console.error('Share failed:', err.message);
  }
});

Share failed: Failed to execute 'share' on 'Navigator': An earlier share has not yet completed.



취소
 공유
취소
댓글 0
댓글 알림
나의얼굴