수정기능으로
db.collection('question').doc(user.uid). get().then((result)=> {
console.log(result.data());
이런식으로 작성후
$('#name').val(result.data().작성자); 이런식으로 작성했는데요
Uncaught (in promise) TypeError: Cannot read properties of undefined (reading '작성자')
받아오지못하고있습니다 .
console.log resultdata도 undefined로 나오는거보니 아예 받아오질 못하는거같은데
user.uid 도 출력잘되구요 .. ㅠㅠ 어느쪽을 또봐야할까요 ..