使用redis后,没有返回信息
来源:7-11 手机号码登录 - 获取验证码(二)
博楠
2018-04-28
//生成一个随机数
$code = rand('1000','9999');
$redis = new \Swoole\Coroutine\Redis();
$redis->connect(config('redis.host'),config('redis.port'));
$redis->set(Redis::getSmsKey($phoneNum), $code, config("redis.out_time"));
$redis->close();
return Util::show(config('code.success'), '验证码发送成功');
添加了上面的redis代码,没有返回任何信息,如果没有使用redis是可以返回的,
network中显示
还请singwa老师帮忙,看下原因,十分感谢
写回答
1回答
-
singwa
2018-04-28
你好,你把这个地方换成异步redis试试是否可以?
012018-05-02
相似问题