전체 글
-
20.05.06개인공부/영어 2020. 5. 6. 12:55
Ruth Bader Ginsberg In Hospital ‘Resting’ After Gallbladder Treatment https://www.huffpost.com/entry/ruth-bader-ginsburg-justice-hospital-gallbladder_n_5eb20747c5b62b850f93d7ca -gallbladder: 담낭 The Supreme Court Justice is expected to participate in oral arguments for the court by phone tomorrow. -Supreme Court Justice : 미국 연방 대법원 -court : 법정 Ginsburg was “resting comfortably” after receiving “n..
-
Vue.js ) 폴더에있는 local img를 데이터모델로 받아온 후 페이지에 로드하기Front-end/Vue.js 2020. 5. 1. 12:12
하 .. 이것만 이틀걸렸다 ㅋㅋ 아무리 코드만 봐도 문제가없고 개발자도구 network 에서 status 200 인데 프리뷰가 흰색이여서 ..넘 ㅠ 괴로웠는데 해결방법을 찾았다. data에서 받아오는 형식이면 require이 필요하다. ( * DB에서 데이터를 가져오는것이 아닌 js 파일에서 데이터 모델을 만든 후 가져오는 형식입니다.) // dataModel.js const data = [ { id: 1, name: '묘묘', title: '타이틀.', content: '뿌려야하는 설명' // image: "require('@/images/concordiaReview.jpg')", -> status 304 // 200 근데 안뜸 image: './assets/concordiaReview.jpg', ->..
-
20.04.29개인공부/영어 2020. 4. 29. 12:46
https://www.mtlblog.com/news/canada/qc/montreal/montreal-weather-forecasts-show-sunny-skies-and-18-c-this-week Spring marches on even if we're stuck in one place. The seven-day forecast from The Weather Network shows 18 C temperatures hitting the city for three days this week. We'll get the first hint of warm Montreal weather on Wednesday with "a mix of sun and clouds," before two days of rain. ..
-
JqGrid ) 그리드 cell에 input text, combobox 구현 & 수정시 그리드에 값 적용시키기Front-end/Javascript 2020. 4. 29. 10:25
1) 적용할 컬럼에 editable: true, edittype: 'text', 'select' 정의하기. combobox 형태로 구현을 하려면 옵션들을 객체 const obj = {} 형식으로 가져와야 value 형태로 사용할수있다. const city_obj = {}; // 서비스에서 받아온 option value가 array 형태라면 value_array.forEach(function(item) { // option 으로 나와야하는 item.desc를 객체에 저장한다. 여기는 각자 서비스에 맞게.. city_obj[item.code] = city_obj[item.desc] }); var column = [ { label: '국가' , name: 'country' ,width:73, editable ..
-
20.04.20카테고리 없음 2020. 4. 20. 12:49
Nova Scotia mass killings: What we know and what we don't know https://www.cbc.ca/news/canada/nova-scotia/mass-killings-what-we-know-what-we-don-t-1.5537918 불러오는 중입니다... toll : suffering, deaths, or damage. tragic : very sad, often involving death and suffering. incomprehensible : impossible or extremely difficult to understand. veteran : a person who has had a lot of experience of a particular ..
-
200312 )개인공부/영어 2020. 3. 12. 09:30
1 ) seldom : almost never well-behaved women seldom make history 2 ) incarceration : the act of putting or keeping someone in prison or in a place used as a prison 3 ) poverty : the condition of being extremely poor 4 ) existence : the state of being real, or of being known or recognized Its very existence depends on keeping its existence hidden 5) pluck : to pull something, especially with a su..
-
20.03.06 )개인공부/영어 2020. 3. 6. 22:54
janitoria : relating to the job of being a janitor (= a person employed to look after a large building) liquefy : to (cause a gas or a solid to) change into a liquid form vomit : to empty the contents of the stomach through the mouth - My insides have completely liquefied and I wanna vomit all the time. all of a sudden : very quickly posturing : behaviour or speech that is intended to attract at..
-
제어 대상 찾기 - getElementById, querySelector ...Front-end/Javascript 2020. 3. 5. 13:06
getElementById() : id명에 해당하는 객체들을 찾아서 해당하는 요소 한개에 대한 NodeList(노드의 리스트 , 유사배열(배열 리터럴 []로 감싸져 있지만 배열이 아님))에 담아서 반환한다. 유사배열이기 때문에 배열관련 메소드를 사용하려면 Array.from(유사배열) 형태로 배열로 변환한다. getElementsByTagName() & getElementsByClassName()으로 생성된 HTMLCollection은 live 이므로 리스트가 반환된 이후에도 문서가 수정된다면 문서의 상태를 항상 반영한다. querySelector() : 해당 선택자를 조회하여 첫번째로 해당하는 요소를 반환한다. (NodeList , live 아님 (static)) querySelectorAll() : ..