Category: Front-End

화면단 개발관련 카테고리입니다.

Front-End

[javascript]Math()함수를 이용한 올림, 버림, 반올림

Math()함수 사용방법 [Math.floor() : 소수점 버림 ] document.write(Math.floor(123.456)); →124 document.write(Math.floor(123.567)); →124 [Math.round() : 소수점 반올림 ] document.write(Math.round(123.456)); →123 document.write(Math.round(123.567)); →124 [Math.ceil() : 소수점 올림 ] document.write(Math.ceil(123.456)); →124  document.write(Math.ceil(123.567)); →124  [toFixed() : 소수점 이하 숫자를 지정한 자릿수만 남기고  반올림] document.write((123.456).toFixed(0)); →123 document.write((123.456).toFixed(2)); →123.46 document.write((123.456).toFixed(4)); →123.4560
Front-End

[Vue.js + Vuetify.js] Jodit 에디터 파일 업로드 기능 구현시 함수 또는 스크립트(method) 호출시 is not a function 오류가 발생할 때 처리하는 방법

Jodit 에디터 사용시 서버로 파일 업로드 기능을  사용하려면 별도의 추가 작업을 해야한다.  파일 업로드시 formdata 형식으로 서버로 전달담으로 vue에서 파일업로드시 axios에서 formdata를 파라미터로 사용하는 것과...
Front-End

[Vue warn]: Invalid prop: type check failed for prop “value”. Expected Array, got Object 해결방법

[Vue warn]: Invalid prop: type check failed for prop “value”. Expected Array, got Object  [Vue warn]: Error in callback for watcher “value”: “TypeError: value.reduce is not a function” 주의가 떴다. JSON 타입의 객체 데이터를 배열로 선언한 값으로 지정하려고 할 때 발생되었다. [오류 원인] 데이터를 받는 변수를 배열로 선언했지만 그 변수의 value값으로 object(객체)를...
error: Content is protected !!