Javascript(170)
-
API 참조 방법
1. 로컬에 다운받아서 참조 2. 외부에 존재하는 url 참조
2021.01.23 -
ajax 동기방식 적용
async: false 추가 $.ajax({ url : "{% url 'gantt:getData' %}", data : { "work_id" : "{{work_id}}" }, dataType : 'json', async: false, success : function(data) { console.log('getData 0') data = JSON.parse(data); var tasks = new Array(); $.each(data, function(i,item) { console.log(i,item); newProject(); fields = item.fields; var task = new Object(); task.id = item.pk; task.name = fields.name; task.co..
2021.01.21 -
날짜 밀리세컨드 값 얻기
result = new Date('2020-01-01').getTime() console.log(result)
2021.01.17 -
json 처리
$.ajax({ url : "{% url 'gantt:getData' %}", data : { "work_id" : "{{work_id}}" }, dataType : 'json', success : function(data) { data = JSON.parse(data) $.each(data, function(i,item) { console.log(i,item) }); }, error : function(request, status, error) { console.log(request,status,error) } }); data = JSON.parse(data)처럼 JSON.parse 함수를 사용해야 데이터가 인식이 됨
2021.01.17 -
최신 버전 가져오기 2021.01.16
-
ID로 객체를 찾아서 값 가져오기, 셋팅하기
document.getElementById('id_form-1-name').value $('#id_form-1-name').val() document.getElementById('id_form-1-name').value = 'ㄴㄴㄴ' $('#id_form-1-name').val('ㄴㄴㄴ')
2021.01.16