예제코드

var prblmTag = '';
while(qitemIdx < resultList.length){
    prblmTag += `<div class="reg">`;

    if(resultList[qitemIdx].orignlFileNm === null){
        prblmTag += `<input type="file" name="quiz[0].file" class="input_file form-control" title="" class="w50p">`;
    }else{
        prblmTag += `
                    <input type="hidden" name="quiz[0].atchFileId" value="\${resultList[qitemIdx].atchFileId}">
                    <input type="hidden" name="quiz[0].fileSeSn" value="\${resultList[qitemIdx].fileSeSn}">
                    <a href="/bos/cmmn/file/fileDown.do?atchFileId=\${resultList[qitemIdx].atchFileId}&fileSn=\${resultList[qitemIdx].fileSeSn}">\${resultList[qitemIdx].orignlFileNm}</a>
                    <button type="button" name="fileDelBtn" data-evlsn='\${resultList[qitemIdx].evlSn}' data-prblmsn='\${resultList[qitemIdx].prblmSn}' data-atchfileid='\${resultList[qitemIdx].atchFileId}' data-filesesn='\${resultList[qitemIdx].fileSeSn}' data-prblmtypecd='\${resultList[0].prblmTypeCd}' class="btn btn-danger btn-sm"><i class="fa fa-trash-o" aria-hidden="true"></i></button>
                    `;
    }

 

1. resultList는 ajax통신 후 return받은 data.resultList라고 보면된다.

2. 백틱 안에 변수매핑은 \${data.변수} 이렇게 하시면 된다.

3. CSS가 깨진다면 부분주석 해가면서 어느부분이 오류인지 확인해라.

4. 나는 백틱을 += 로 붙여넣은 다음 최종 $("#대상").append(prblmTag);  최종했다.

'Programming > Javascript' 카테고리의 다른 글

[jqGrid] cell style 변경하기(setCell)  (0) 2020.02.09
[jqGrid] userdata 사용하기 (+ jsonReader)  (0) 2020.02.06
[jqGrid] excel download.  (0) 2020.02.04

문제)

sudo apt-get update 실행시

 

release file for {url} is not valid yet (invalid for another ~).

Updates for this repository will not be applied. 발생

 

 

해결)

sudo systemctl restart systemd-timesyncd.service

이후 sudo apt-get update 재실행

'Programming > Trouble shooting' 카테고리의 다른 글

이중포트포워딩 구성시 외부접속 안됨  (0) 2024.03.26
127.0.0.1 로 접속 안됨  (0) 2024.03.25

문제)

이중포트포워딩 구성을 정상적으로 완료했는데도

외부에서 공인IP로 접속이 안된다.

 

해결)

방화벽 오픈

설정 - 네트워크 및 인터넷 - Windows 방화벽 - 공용네트워크 비활성화

 

 

나의 경우 공용네트워크만 비활성화 해도 외부접속이 가능해졌다.

 

안되면 도메인네트워크 or 개인 네트워크도 꺼보세요.

+ Recent posts