ofbiz

2590 단어

1. Form 결과 리스트에서 모든 input 태그는 한 열로 합성되며, display와 link 태그는 한 열로 통합되지 않습니다.


원인: 프레임워크는 기본적으로 그룹-columns 속성을 "true"로 설정합니다.
해결 방법: 그룹-columns 속성을 "false"로 설정합니다.

2. Form Widget의 combobox가 들어오는 키에 따라 표시할 item을 자동으로 선택하도록 하는 방법은?


다음과 같은 코드를 사용하여 이 작업을 수행할 수 있습니다. <drop-down current="selected" current-description="" no-current-selected-key="${selected-key-value}"> <option key="11" description="샘플링 기기"/> <option key="12" description="현장 분석 기기"/> <option key= "13" description = "랩 분석기기" /> <option key = 14 description = 기타/> </drop-down> 실천은current-description이 작용하지 않는다는 것을 증명했다. 만약에 <option>의 키 값이 중국어라면 작용하지 못한다. 3. Screen/Form Widget의 <set> 기본값. <set>은 다음과 같은 기본값 설정을 지원합니다. <set field="productId" from-field="productId" default-value="0"/>         4. OFBiz 내의 다른 응용 프로그램을 호출할 때 중복 로그인을 피하는 방법. &para; &para; 호출된 폼(post 방식)이나parameters(Get 방식)에 external LoginKey=${external LoginKey} 추가5.Form Widget에서 hyperlink의 target-type. Form Widget에서 hyperlink 형식의 필드에는 target-type 속성이 있습니다. 이것은 target 속성이 설정한 URL과 현재 적용된 URL 간의 관계를 설명하는 데 사용됩니다.hyperlink의 target="targeturi"를 가정하고 현재 적용되는 URL이 http://<site>/webapp/control/main이면: target-type = "intra-app": 설정이 부족하여 응용 내부(intra 어근은 내부를 표시), 최종 target은 http://<site>/webapp/control/targeturi target-type = "inter-app": 서로 다른 응용 프로그램 사이를 나타낸다. 최종 target은 http://<site>/targeturi target-type = "plain": target을 직접 사용하고 최종 target은 targeturi(targeturi가 http 등 인터넷 프로토콜로 시작하거나javascript: 시작하는 js로 호출되면) targeturi로 바로 전환합니다.만약 targeturi가 '/' 로 시작하는 절대 경로라면 http: / / <site > /targeturi로 전환합니다.targeturi가 상대적인 경로라면 http://<site>/webapp/control/targeturi로 전환) target-type = "콘텐츠": 정적 내용 (이미지, js, css 등) 의 경로를 표시하고 최종 target은url에 따라 표시합니다.properties의 콘텐츠.url.prefix.standard의 값과 targeturi가 생성됩니다.이 유형은 주로 서로 다른 서버 사이에서 OFBiz 응용 프로그램을 이동할 때 정적 내용의 접근성을 유지하기 위해 테스트된 것이다 6. 어떻게 하면 빅데이터집의 첫줄 기록만 되돌릴 수 있을까.이 때 데이터베이스에 첫 번째 줄만 돌아간다는 통지를 해서 효율을 높여야 합니다.EntityFindOptions findOptions = new EntityFindOptions(......); findOptions.setMaxRows(1); ... List<GenericValue> resultList = delegator.findList(..., findOptions); 최대 줄 수를 1로 설정하고 검색 결과가 수만 줄이 되면 데이터베이스는 첫 줄만 되돌아와 메모리 공간을 절약하고 효율을 높인다.7.OFBiz에서 업로드 파일의 크기를 어떻게 제한합니까?    general.properties의 http.upload.max.size 매개 변수는 업로드 파일의 크기(단위bytes)를 제한할 수 있습니다. 기본 설정은 "-1"으로 제한이 없음을 나타냅니다.

좋은 웹페이지 즐겨찾기