当前位置:Gxlcms > PHP教程 > ecshop有关问题

ecshop有关问题

时间:2021-07-01 10:21:17 帮助过:5人阅读

ecshop问题,高手请进
index.php
PHP code




无标题文档











json.php

PHP code
 0, 'message' => '', 'content' => '', 'goods_id' => '');
    
    
    $upload_img = $_REQUEST['upload_img'];
    
    

    $result['content'] = $upload_img;
    
    
    die($json->encode($result));
}
?>


出现例外被抛出未被接住,高手们帮我看看是什么问题



------解决方案--------------------
如下应该可以试试。
HTML code

function fileSubmit()
{
    var upload_img = document.getElementById("publisher_file").value;
    Ajax.call('json.php', 'step=update_img&upload_img='+upload_img, changeImageResponse, 'GET', 'JSON');
}
function changeImageResponse(result)
{
    alert(result.content.content);
}
                     

人气教程排行