Baidu ueditor 구성 요소는 업로드된 이미지를 사용한 후 업로드된 이미지를 편집기에 자동으로 표시합니다. 즉, a1f02c36ba31691bcfe87b2722de723b 그리고 이미지를 업로드할 때 로컬 경로를 값으로 갖는 alt 속성을 설정합니다. 이 값을 어디에서 구성할지 아직 찾지 못했습니다. 공개된 내용을 보니 alt 값이 디스크 경로인 것을 보니 좀 어색하네요.
대체 컨텐츠를 편집하여 데이터베이스에 저장한 후 필터링 및 수정하거나, 소스코드를 직접 수정할 수도 있습니다
function callback(){ try{ var link, json, loader, body = (iframe.contentDocument || iframe.contentWindow.document).body, result = body.innerText || body.textContent || ''; json = (new Function("return " + result))(); link = me.options.imageUrlPrefix + json.url; if(json.state == 'SUCCESS' && json.url) { loader = me.document.getElementById(loadingId); loader.setAttribute('src', link); loader.setAttribute('_src', link); loader.setAttribute('title', json.title || ''); loader.setAttribute('alt', json.original || ''); loader.removeAttribute('id'); domUtils.removeClasses(loader, 'loadingclass'); } else { showErrorLoader && showErrorLoader(json.state); } }catch(er){ showErrorLoader && showErrorLoader(me.getLang('simpleupload.loadError')); } form.reset(); domUtils.un(iframe, 'load', callback); }
더 보기 Baidu ueditor 컴포넌트에 이미지를 업로드한 후 img에 alt 속성을 설정하는 방법에 대한 관련 기사는 PHP 중국어 웹사이트를 참고하세요!