lab.naminsik
  • Javascript, jQuery
  • Reactjs
  • React Native
  • iOS
  • Android
  • AWS
  • Server
  • Html, CSS
  • Php
  • asp .net
  • SQL
  • Word Press
search
keywords
  • WP Tip & Tech 2017‧07‧30

    목록 구현할 때 포스팅의 slug 값 가져오기

    <?php echo $post->post_name; ?> php로 이렇게 출력하면 슬러그(고유주소 뒤에 정의한 마지막 주소)가 노출됨.

  • Javascript, jQuery 2017‧03‧02

    자바스크립트를 이용해 위도,경도를 주소로 변환하기

    위도 경도 데이터는 있는데 이를 주소명, 지역명으로 변환하고 싶을 때 사용한다. API 키 발급과 정보 : https://developers.daum.net/services/apis/local/geo/coord2addr var lon = '경도'; var lat = '위도'; $.ajax({ url: 'https://apis.daum.net/local/geo/coord2addr?apikey=발급받은API키&longitude=' + lon + '&latitude=' + lat + '&inputCoordSystem=WGS84&output=json', type: 'GET', cache: false, context: {}, crossOrigin: true, success: function(data) { var jsonObj = $.parseJSON(data); var contentText = document.getElementById('content'); contentText.innerHTML […]

  • Javascript, jQuery 2015‧10‧17

    javascript - 주소의 파라미터값 변수로 받기

    http://werty.co.kr/blog/?userid=honggildong&age=21 이런식으로 접속 주소가 발생하였고 클라이언트단에서 위 주소를 기반으로 변수를 받아 인터렉션을 구현할 때 아래 방법을 쓴다. function getParameterByName(name) { name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]"); var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"), results = regex.exec(location.search); return results === null ? "" : decodeURIComponent(results[1].replace(/\+/g, " ")); }  함수를 추가한 후 아래와 같이 이용해서 값을 […]

popular

  • jQuery - 선택자 삭제 .remove
  • JS - 모바일 접속 체크
  • 가로 모드(또는 세로 모드)로 가는 회전 막기
  • 리액트에서 리스트 반복으로 버튼 만들 때 .map()
  • CodeDeploy agent was not able to receive the lifecycle event. Check the CodeDeploy agent logs on your host and make sure the agent is running and can connect to the CodeDeploy server.
  • 리눅스 명령어(Linux Command)
  • audio context 볼륨 조절하기
  • 그림문자인 이모지(emoji) 웹에 사용하기
  • 관리자 페이지 중 위젯에서 드래그 & 드롭이 안되는 현상
  • react native - 설치된 자바 버전에 따른 오류

comment

  • 감사합니다!
  • 감사합니다~
  • 잘 해결 되셨다니 다행입니다!...
  • 정말 감사합니다. 덕분에 해결했습니다!...
  • 유용한정보 대단히 감사합니다....