我在过去的两年里一直在使用Codeigniter并且真的成为了一个忠实的粉丝,但在过去的一年里,我发现自己编写的javascript比PHP更多.
在开始时,我会用PHP编写所有内容,但现在我发现自己总是使用$.ajax.而且我觉得我在javascript和php之间重复自己.
我知道CI确实可以让你对ajax有一个很好的控制,但是我仍然有两个写了大量的javascript,我想尽可能地巩固.
我想我正在寻找的是一个与jQuery的$.ajax紧密集成的php框架.
解决方法:
我在Javascript中使用这段代码.后端智能事物是在MVC类型的组织中组织的,因此影响一个模块的事物通常组合在一起.一般而言,我还为单独的模型创建了一个sperate模块,但在某些情况下,您可能会偏离此原则.
我的设置是在后面的symfony和前面的普通jquery.有一些方法可以自动化这个部分,比如http://javascriptmvc.com/,我觉得它在许多部分都有限制.这是我整合php和jquery的工作流程.
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之类的内容组合在一起,则错误回调非常好