路径和文件地址。。。。。。。。。。。。。。。。

function photo_edit() {
var url = '${ctx}/system/base/pedit/edit'+'?data_target_row='+target_row.filePath +'&data_target_row2='+target_row.fileName +'&base='+base;
//var url = '/togest_emis/edit'+'?data_target_row='+target_row.filePath +'&data_target_row2='+target_row.fileName +'&base='+base;
//var url = '${ctx}/system/base/pedit/edit';
alert(url);
$.ajax({
url : '${ctx}/system/base/pedit/edit',
type : 'get',
data : {
data_target_row : target_row.filePath,
data_target_row2 : target_row.fileName,
base :base

        },
        // data:'target_row'+target_row,
        dataType : "json",
        success : function(result) {

            if ("ture" == $.trim(result)) {

            } else {

            }
        },
        error : function() {

        }
    });
    window.open(url);


}
这样写会报2

"NetworkError: 404 Not Found - http://localhost:8080/togest_emis/system/base/pedit/orgin/C2/defect/2677fd78058f4968ba154d849955e48b.png"
需要怎么解决这个控制器也成文件夹的问题

https://zhidao.baidu.com/question/36480033.html