소개
게시글
질문&답변
2023.10.28
updateMany에서 user._id를 못찾는 상황
해결 const BlogSchema = new Schema( { title: { type: String, required: true }, content: { type: String, required: true }, islive: { type: Boolean, required: true, default: false }, user: { _id: { type: Object, required: true, ref: "user" }, username: { type: String, required: true }, name: { first: { type: String, required: true }, last: { type: String, required: true }, }, }, comments: [commentSchema], }, { timestamps: true } );=> const BlogSchema2 = new Schema( { title: { type: String, required: true }, content: { type: String, required: true }, islive: { type: Boolean, required: true, default: false }, user: { _id: { type: Types.ObjectId, required: true, ref: "user" }, username: { type: String, required: true }, name: { first: { type: String, required: true }, last: { type: String, required: true }, }, }, commentsCount: { type: Number, default: 0, required: true }, comments: [commentSchema], }, { timestamps: true } );바보같이 user type을 object로 해서 생긴 문제.....
- 1
- 1
- 289
고민있어요
2022.07.20 14:29
vue3, chart.js 최신 버전 사용시 차트 불러오는 방벙은 공식 페이지에 다 있었다?
- 0
- 0
- 3.4K
고민있어요
2022.06.23 14:45
오타가 너무 무섭네요
- 0
- 0
- 159
질문&답변
2022.06.20
todolist에 propsdata를 this.$store.state.todoItems로 변경시켜줬더니 페이지에 아무것도 뜨지않습니다
TodoList.vue 에서 store에서 가져온 값으로 변경을 해주었기때문에 app.vue 안에 메소드 부분도 변경을 시켜줘야 합니다! addTodoItem(todoItems) { var obj = {completed: false, item: todoItems}; localStorage.setItem(todoItems, JSON.stringify(obj)); this.$store.state.todoList.push(obj); },
- 1
- 5
- 388