- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章Thinkphp 在api开发中异常返回依然是html的解决方式由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
现在谁不开发接口的呢?但是在接口开发过程中,报错误html">异常后居然返回错误的信息依然是html信息!TP官方也不知道为啥不添加,说好的为接口而生,我的解决方案也很简单,把系统的异常处理类复制出来,去掉模板相关,直接以json方式输出 。
下面是解决方案:
1:按照TP扩展异常的方式引用这个文件 。
https://www.kancloud.cn/manual/thinkphp5_1/354092 。
1
2
3
4
5
6
7
|
// 判断默认输出类型
// $app 是配置数组
if
(
$app
[
'default_return_type'
] ==
'json'
) {
// 异常处理handle类 留空使用 \think\exception\Handle
$app
[
'exception_handle'
] =
'\\app\\common\\exception\\JsonException'
;
}
return
$app
;
|
异常处理类:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
|
<?php
namespace
app\common\exception;
use
Exception;
use
think\exception\ErrorException;
use
think\exception\Handle;
use
think\exception\HttpException;
use
think\console\Output;
use
think\Container;
use
think\Response;
class
JsonException
extends
Handle
{
protected
$render
;
protected
$ignoreReport
= [
'\\think\\exception\\HttpException'
,
];
public
function
setRender(
$render
)
{
$this
->render =
$render
;
}
/**
* Report or log an exception.
*
* @access public
* @param \Exception $exception
* @return void
*/
public
function
report(Exception
$exception
)
{
if
(!
$this
->isIgnoreReport(
$exception
)) {
// 收集异常数据
if
(Container::get(
'app'
)->isDebug()) {
$data
= [
'file'
=>
$exception
->getFile(),
'line'
=>
$exception
->getLine(),
'message'
=>
$this
->getMessage(
$exception
),
'code'
=>
$this
->getCode(
$exception
),
];
$log
=
"[{$data['code']}]{$data['message']}[{$data['file']}:{$data['line']}]"
;
}
else
{
$data
= [
'code'
=>
$this
->getCode(
$exception
),
'message'
=>
$this
->getMessage(
$exception
),
];
$log
=
"[{$data['code']}]{$data['message']}"
;
}
if
(Container::get(
'app'
)->config(
'log.record_trace'
)) {
$log
.=
"\r\n"
.
$exception
->getTraceAsString();
}
Container::get(
'log'
)->record(
$log
,
'error'
);
}
}
protected
function
isIgnoreReport(Exception
$exception
)
{
foreach
(
$this
->ignoreReport
as
$class
) {
if
(
$exception
instanceof
$class
) {
return
true;
}
}
return
false;
}
/**
* Render an exception into an HTTP response.
*
* @access public
* @param \Exception $e
* @return Response
*/
public
function
render(Exception
$e
)
{
if
(
$this
->render &&
$this
->render
instanceof
\Closure) {
$result
= call_user_func_array(
$this
->render, [
$e
]);
if
(
$result
) {
return
$result
;
}
}
if
(
$e
instanceof
HttpException) {
return
$this
->renderHttpException(
$e
);
}
else
{
return
$this
->convertExceptionToResponse(
$e
);
}
}
/**
* @access public
* @param Output $output
* @param Exception $e
*/
public
function
renderForConsole(Output
$output
, Exception
$e
)
{
if
(Container::get(
'app'
)->isDebug()) {
$output
->setVerbosity(Output::VERBOSITY_DEBUG);
}
$output
->renderException(
$e
);
}
/**
* @access protected
* @param HttpException $e
* @return Response
*/
protected
function
renderHttpException(HttpException
$e
)
{
$status
=
$e
->getStatusCode();
$template
= Container::get(
'app'
)->config(
'http_exception_template'
);
if
(!Container::get(
'app'
)->isDebug() && !
empty
(
$template
[
$status
])) {
return
Response::create(
$e
,
'json'
,
$status
);
}
else
{
return
$this
->convertExceptionToResponse(
$e
);
}
}
/**
* @access protected
* @param Exception $exception
* @return Response
*/
protected
function
convertExceptionToResponse(Exception
$exception
)
{
// 收集异常数据
if
(Container::get(
'app'
)->isDebug()) {
// 调试模式,获取详细的错误信息
$data
= [
'name'
=> get_class(
$exception
),
'file'
=>
$exception
->getFile(),
'line'
=>
$exception
->getLine(),
'message'
=>
$this
->getMessage(
$exception
),
'trace'
=>
$exception
->getTrace(),
'code'
=>
$this
->getCode(
$exception
),
'source'
=>
$this
->getSourceCode(
$exception
),
'datas'
=>
$this
->getExtendData(
$exception
),
'tables'
=> [
'GET Data'
=>
$_GET
,
'POST Data'
=>
$_POST
,
'Files'
=>
$_FILES
,
'Cookies'
=>
$_COOKIE
,
'Session'
=> isset(
$_SESSION
) ?
$_SESSION
: [],
'Server/Request Data'
=>
$_SERVER
,
'Environment Variables'
=>
$_ENV
,
'ThinkPHP Constants'
=>
$this
->getConst(),
],
];
}
else
{
// 部署模式仅显示 Code 和 Message
$data
= [
'code'
=>
$this
->getCode(
$exception
),
'message'
=>
$this
->getMessage(
$exception
),
];
if
(!Container::get(
'app'
)->config(
'show_error_msg'
)) {
// 不显示详细错误信息
$data
[
'message'
] = Container::get(
'app'
)->config(
'error_message'
);
}
}
//保留一层
while
(ob_get_level() > 1) {
ob_end_clean();
}
$data
[
'echo'
] = ob_get_clean();
$response
= Response::create(
$data
,
'json'
);
if
(
$exception
instanceof
HttpException) {
$statusCode
=
$exception
->getStatusCode();
$response
->header(
$exception
->getHeaders());
}
if
(!isset(
$statusCode
)) {
$statusCode
= 500;
}
$response
->code(
$statusCode
);
return
$response
;
}
/**
* 获取错误编码
* ErrorException则使用错误级别作为错误编码
* @access protected
* @param \Exception $exception
* @return integer 错误编码
*/
protected
function
getCode(Exception
$exception
)
{
$code
=
$exception
->getCode();
if
(!
$code
&&
$exception
instanceof
ErrorException) {
$code
=
$exception
->getSeverity();
}
return
$code
;
}
/**
* 获取错误信息
* ErrorException则使用错误级别作为错误编码
* @access protected
* @param \Exception $exception
* @return string 错误信息
*/
protected
function
getMessage(Exception
$exception
)
{
$message
=
$exception
->getMessage();
if
(PHP_SAPI ==
'cli'
) {
return
$message
;
}
$lang
= Container::get(
'lang'
);
if
(
strpos
(
$message
,
':'
)) {
$name
=
strstr
(
$message
,
':'
, true);
$message
=
$lang
->has(
$name
) ?
$lang
->get(
$name
) .
strstr
(
$message
,
':'
) :
$message
;
}
elseif
(
strpos
(
$message
,
','
)) {
$name
=
strstr
(
$message
,
','
, true);
$message
=
$lang
->has(
$name
) ?
$lang
->get(
$name
) .
':'
.
substr
(
strstr
(
$message
,
','
), 1) :
$message
;
}
elseif
(
$lang
->has(
$message
)) {
$message
=
$lang
->get(
$message
);
}
return
$message
;
}
/**
* 获取出错文件内容
* 获取错误的前9行和后9行
* @access protected
* @param \Exception $exception
* @return array 错误文件内容
*/
protected
function
getSourceCode(Exception
$exception
)
{
// 读取前9行和后9行
$line
=
$exception
->getLine();
$first
= (
$line
- 9 > 0) ?
$line
- 9 : 1;
try
{
$contents
= file(
$exception
->getFile());
$source
= [
'first'
=>
$first
,
'source'
=>
array_slice
(
$contents
,
$first
- 1, 19),
];
}
catch
(Exception
$e
) {
$source
= [];
}
return
$source
;
}
/**
* 获取异常扩展信息
* 用于非调试模式html返回类型显示
* @access protected
* @param \Exception $exception
* @return array 异常类定义的扩展数据
*/
protected
function
getExtendData(Exception
$exception
)
{
$data
= [];
if
(
$exception
instanceof
\think\Exception) {
$data
=
$exception
->getData();
}
return
$data
;
}
/**
* 获取常量列表
* @access private
* @return array 常量列表
*/
private
static
function
getConst()
{
$const
= get_defined_constants(true);
return
isset(
$const
[
'user'
]) ?
$const
[
'user'
] : [];
}
}
|
以上这篇Thinkphp 在api开发中异常返回依然是html的解决方式就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我.
原文链接:https://blog.csdn.net/dragonlhp/article/details/79263925 。
最后此篇关于Thinkphp 在api开发中异常返回依然是html的解决方式的文章就讲到这里了,如果你想了解更多关于Thinkphp 在api开发中异常返回依然是html的解决方式的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
thinkphp开发图片上传,图片异步上传是目前比较方便的功能,这里我就不写css文件了,将代码写出来。引入核心文件下载https://github.com/carlcarl/A... HTML
现在谁不开发接口的呢?但是在接口开发过程中,报错误html">异常后居然返回错误的信息依然是html信息!TP官方也不知道为啥不添加,说好的为接口而生,我的解决方案也很简单,把系统的
thinkphp 抓取网站的内容并且保存到本地的实例详解 我需要写这么一个例子,到电子课本网下载一本电子书。 电子课本网的电子书,是把书的每一页当成一个图片,然后一本书就是有很多张图片,我需要批
假设数据库中会计科目数据表的字段为:id,code,name,islast。分别为自增主键,科目编码,科目名称,是否为末级("1"表示末级科目)。 这里在Thinkphp的模型
本文实例讲述了thinkphp+phpexcel实现excel报表输出功能。分享给大家供大家参考,具体如下: 准备工作: 1.下载phpexcel1.7.6类包; 2.解压至tp框架的thin
ThinkPHP 内置的模板引擎来定义模板文件,以及使用加载文件、模板布局和模板继承等高级功能。 每个模板文件在执行过程中都会生成一个编译后的缓存文件,其实就是一个可以运行的 PHP 文件。 引
本文实例讲述了thinkPHP+ajax实现统计页面pv浏览量的方法。分享给大家供大家参考,具体如下: 统计pv量很常用,下面的代码用ajax实现的,使用ajax可以避免页面缓存造成的影响,只要客
在很多网站中都会有使用404页面的时候,在ThinkPHP框架中该如何设置呢,接下来我介绍其中一种方法 1、首先要在Lib/Action 下建立EmptyAction.class.php模块 内容
话不多说,请看代码: ? 1
ThinkPHP 模板substr的截取字符串函数 在Common/function.php加上以下代码 ?
先上效果图: 那个file按钮样式先忽略 点击选择图片(浏览),随便选一张图片 js代码如下 ?
本文实例分析了thinkPHP js文件中U方法不被解析问题。分享给大家供大家参考,具体如下: 我想在js文件中写ajax, 写完发现异常, 本以为是js文件中不支持ajax 后来发现时地址
使用TP 3.2框架 ? 1
本文实例讲述了thinkphp,onethink和thinkox中验证码不显示的解决方法。分享给大家供大家参考,具体如下: 使用验证码的时候,一开始正常,后来不显示了 网上说是utf-8的编码问
1、基础知识 1.手机APP的类型 移动端的应用有这几种:WebApp,NativeApp,HybridApp。 WebApp 就是手机网站,需要用手机浏览器访问。 NativeApp是用
ThinkPHP CURD操作的查询方法中最常用但也是最复杂的就是where方法。where方法也属于模型类的连贯操作方法之一,主要用于查询和操作条件的设置。 where方法的用法是ThinkPH
ThinkPHP CURD方法的limit方法也是模型类的连贯操作方法之一,主要用于指定查询和操作的数量,特别在分页查询的时候使用较多。并且ThinkPHP的limit方法可以兼容所有的数据库驱动类
ThinkPHP CURD方法的page方法也是模型连贯操作方法之一,是完全为分页查询而诞生的一个人性化操作方法。 用法 我们在前面已经分析了关于limit方法用于分页查询的情况,而page方法则
ThinkPHP CURD方法的table方法也属于模型类的连贯操作方法之一,该方法主要用于指定操作的数据表。 具体用法如下: 一般情况下,操作模型的时候系统能够自动识别当前对应的数据表,所以,
ThinkPHP CURD方法的order方法属于模型的连贯操作方法之一,该方法用于对操作的结果排序。 具体用法如下: ?
我是一名优秀的程序员,十分优秀!