Page tree
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

릴리즈 3.1.0 이상

에디터에 리소스를 해제하는 함수입니다.

에디터에 이벤트와 참조를 제거하여 메모리 누수를 방지합니다.

onBeforeUnload 실행 시 destroy가 실행됩니다.



Example:

// react 예제 (unmount 시 destroy 호출)

useEffect(() => {
	```
	const config = {};
	const html = '';
	const eventListener = {};
	
	editor = new SynapEditor('synapeditor', config, html, eventListener);
	```
	return () => {
		if (editor) {
			```
			editor.destroy();
			editor = null;
			```
		}
	}
}, []);
  • No labels