Commit bfb6e4f6 authored by 이재연's avatar 이재연
Browse files

오류수정엉

parent 06243807
......@@ -24,8 +24,12 @@
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"nodemonConfig":{
"ignore":["test/*","docs/*","client/*"]
"nodemonConfig": {
"ignore": [
"test/*",
"docs/*",
"client/*"
]
},
"eslintConfig": {
"extends": [
......
......@@ -16,7 +16,7 @@ const HomeProfile = () => {
async function getSetUser(userID) {
try {
// console.log('userID', userID)
const data = await userApi.getUser( userID )
const data = await userApi.getUser(userID)
// console.log(data)
setUser(data)
// console.log(user)
......
......@@ -14,7 +14,7 @@ const Info = () => {
async function getProfile(userID) {
try {
const data = await userApi.getUser({id:userID});
const data = await userApi.getUser(userID);
setProfile(data);
} catch (error) {}
}
......
......@@ -19,7 +19,7 @@ const InfoUpdate = () => {
async function getProfile(userID) {
try {
const data = await userApi.getUser({ id: userID });
const data = await userApi.getUser(userID);
setProfile(data);
} catch (error) {}
}
......
......@@ -14,7 +14,7 @@ const Profile = () => {
async function getProfile(userID) {
try {
const data = await userApi.getUser({id:userID});
const data = await userApi.getUser(userID);
setProfile(data.img)
} catch (error) {}
......
......@@ -23,7 +23,7 @@ const update = async (req, res) => {
}
};
const getUser = async (req, res) => {
const user = await User.findOne({ where: { id: req.body.id } });
const user = await User.findOne({ where: { id: req.params.id } });
res.json(user)
};
......@@ -43,7 +43,6 @@ const updateinfo = async (req, res) => {
};
const login = async (req, res) => {
try {
// console.log('login= ', req.body)
const { email, password } = req.body
const user = await User.findOne({ where: { email: email } })
if (!user) {
......@@ -65,7 +64,6 @@ const login = async (req, res) => {
}
}
} catch (error) {
// console.log(error)
return res.status(500).send('로그인 중 에러')
}
};
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment