ajax请求页面输出的标准做法?

时间:2011-06-04 11:40:55

标签: php ajax coding-style

用于Ajax请求的PHP页面的标准做法是什么?他们应该打印出一个值(例如:获得id = x的玩家积分)吗?单个页面是否应该提供多个请求?如果是这样,代码如何在PHP端进行分组?

P.S:另一个问题:如果使用像Smarty这样的模板系统,那么调用PHP页面而不是直接调用请求页面会更安全吗?

2 个答案:

答案 0 :(得分:3)

我认为在php中创建数组是有意义的,然后将它们转换为JSON并作为JSON对象发回。这样可以更灵活地处理服务器和客户端的数据。

答案 1 :(得分:1)

我在Javascript中使用这段代码。后端智能事物是在MVC类型的组织中组织的,因此影响一个模块的事物通常组合在一起。一般来说,我也为单独的模型创建了一个sperate模块,但在某些情况下,你可能会偏离这个原则。

<强> PHP

执行一段代码并将其包装在try / catch块中。这样,错误消息可以传播到前端。在这方面,此方法有助于将异常转换为可读错误。 (从json调试)。

try {
    //... execute code ..  go about your buisness..
    $this->result = "Moved  " . count($files) . " files ";
    // result can be anything that can be serialized by json_encode()
} catch (Exception $e) {
   $this->error = $e->getMessage() . ' l: '  . $e->getLine() . ' f:' . $e->getFile();
   // return an error message if there is an exception. Also throw exceptions yourself to make your life easier.
}
// json response basically does something like echo json_encode(array("error" => $this->error, "result" => $this->result))
return $this->jsonResponse();

对于错误处理,我经常使用它来解析错误。

public function parseException($e) {
    $result = 'Exception: "';
    $result .= $e->getMessage();
    $trace = $e->getTrace();
    foreach (range(0, 10) as $i) {
        $result .= '" @ ';
        if (!isset($trace[$i])) {
            break;
        }
        if (isset($trace[$i]['class'])) {
            $result .= $trace[$i]['class'];
            $result .= '->';
        }
        $result .= $trace[$i]['function'];
        $result .= '(); ';
        $result .= $e->getFile() . ':' . $e->getLine() . "\n\n";
    }

    return $result;
}

Javascript方

/**
 * doRequest in an ajax development tool to quickly execute data posts.
 * @requires jQuery.log
 * @param action (string): url for the action to be called. in config.action the prefix for the url can be set
 * @param data (object): data to be send. eg. {'id':5, 'attr':'value'}
 * @param successCallback (function): callback function to be executed when response is success
 * @param errorCallback (function): callback function to be executed when response is success
 */
jQuery.doRequest = function (action, data, successCallback, errorCallback) {
    if (typeof(successCallback) == "undefined") {
        successCallback = function(){};
    } 
    if (typeof(errorCallback) == "undefined") {
        errorCallback = function(data ){
            alert(data.error);
        };
    }
    jQuery.log(action);

    jQuery.post(action, data, function (data, status)
    {

        jQuery.log(data);
        jQuery.log(status);
        if (data.error !== null || status != 'success') {
            // error handler
            errorCallback(data);
        } else {
            successCallback(data);
        }
    },'json');
};

注意:如果将它们与pNotify

等组合在一起,则错误回调非常好