'2019/03/11'에 해당되는 글 2건

  1. 2019.03.11 LSI raid ir it mode
  2. 2019.03.11 ckeditor 와 php, node.js 연동
하드웨어/RAID2019. 3. 11. 19:57

it mode 에 대한 용어는 자주 보이는데 IR mode는 잘 안보여서 검색

일단 LSI raid에서 나오는 용어로 보이는데

HBA 컨트롤러용 펌웨어로 IR 펌웨어를 쓰면 Raid로 작동하고

IT 펌웨어를 쓰면 HBA로 작동하는 녀석인 듯?


The two firmware types are Initiator Target (IT) and Integrated RAID (IR)

IR is the typical hardware RAID firmware that the internal cards or boards 

ship with. 


The IT firmware, on the other hand, is the Initiator Target 

firmware which is designed to allow a SAS HBA to connect to up to 256 

devices using SAS Expanders. The IT firmware is typically shipped on 

external cards. The IT firmware does not have any RAID capabilities and 

simply acts as an HBA. 

[링크 : https://www.supermicro.com/support/faqs/faq.cfm?faq=16169]

Posted by 구차니
Programming/node.js2019. 3. 11. 14:56

form에서 method을 지정할때 post로 하고

node.js에서 받아서 처리하게 하는 것도 방법일 듯


CKEDITOR.replace('contents');

CKEDITOR.instances.contents.updateElement(); 

[링크 : https://offbyone.tistory.com/207]

[링크 : https://academy.realm.io/kr/posts/realm-node-js-express-blog-tutorial/]


+

2019.03.14


아무생각없이 복붙했는데 안되서 찾아보니 replace에 들어가는 id를 넣어주어야 한다 -_ㅠ

두가지 모두 ckeditor v4에서 작동하는 것을 확인하였으니 골라서 입맛대로 쓰면 될 듯

(위에꺼는 updatElement 해주고 form으로 넘겨주거나 해당 내용을 받아오면 되는 지라 원칙에 가까운 느낌?)

var editor = CKEDITOR.replace( 'editor1' );

var data = CKEDITOR.instances.editor1.getData(); 


[링크 : https://ckeditor.com/docs/ckeditor4/latest/guide/dev_savedata.html]

'Programming > node.js' 카테고리의 다른 글

node.js http cache proxy  (0) 2019.03.20
node.js 사용자 모듈 만들기  (0) 2019.03.13
floala 에디터 + node.js  (0) 2019.03.08
wysiwyg editor / node.js  (0) 2019.02.26
node.js 파비콘 설정하기  (0) 2019.02.22
Posted by 구차니