UEditor 편집기 이미지 업로드 또는 파일 경로 수정 방법 사용자 정의

ueditor 편집기를 사용하면 첨부 파일은 기본적으로 ueditor/php/upload/에 있습니다. 제 첨부 파일 주소는 사이트 루트 디렉터리 아래/data/upload/입니다. ueditor를 다음과 같이 수정해야 합니다.
1단계: php/config를 엽니다.php 그림 디렉터리 수정

return array(

    //
    'imageSavePath' => array (
        '../../../../data/upload'
    )

);
2단계: 그림을 올린 후 상대 경로 php/imageUp을 제거합니다.php

    $info["url"]=str_replace('../../../../', '', $info["url"]);
    echo "{'url':'" . $info["url"] . "','title':'" . $title . "','original':'" . $info["originalName"] . "','state':'" . $info["state"] . "'}";
    exit;
3단계: ueditor를 엽니다.config.js 그림 경로 수정

 ,imagePath:"/" 
4단계: 그림 생성 경로나 그림 이름을 수정하려면
php/Uploader에서 이미지 생성 경로를 수정합니다.class.php

    private function getFolder()
    {
        $pathStr = $this->config[ "savePath" ];
        if ( strrchr( $pathStr , "/" ) != "/" ) {
            $pathStr .= "/";
        }
        $pathStr .= date( "Ym/d" );
        if ( !file_exists( $pathStr ) ) {
            if ( !mkdir( $pathStr , 0777 , true ) ) {
                return false;
            }
        }
        return $pathStr;
    }
파일 이름을 수정합니다. ueditor에 있습니다.all.min.js에서 "fileNameFormat"을 검색한 다음공식 문서 수정 설명!

좋은 웹페이지 즐겨찾기