CRUD - 만들기 - Node.js SDK
이 페이지의 내용
Atlas Device SDK는 더 이상 사용되지 않습니다. 자세한 내용은 지원 중단 페이지 를 참조하세요.
새 객체 만들기
Realm 에 객체 를 추가하려면 다른 객체 와 마찬가지로 객체를 인스턴스화한 다음 Realm .create( ) 쓰기 트랜잭션( 쓰기 트랜잭션 (write transaction)) 내부. Realm의 스키마 에 객체 유형이 포함되어 있고 객체 가 스키마 를 준수하는 경우 Realm 은 객체 를 저장하며, 이제 영역 에서 이 객체를 managed 합니다.
// Declare the variable that will hold the dog instance. let dog; // Open a transaction. realm.write(() => { // Assign a newly-created instance to the variable. dog = realm.create("Dog", { name: "Max", age: 5 }); }); // use newly created dog object