上一页 1 2 3 4 5 6 ··· 33 下一页
  2019年4月1日
摘要: 引入qs模块 使用 qs模块将data序列化,再传递,注意header必须设置为 'content-type':'application/x-www-form-urlencoded', import qs from 'qs'; data = qs.stringify(data); uni.reque 阅读全文
posted @ 2019-04-01 11:51 baraka 阅读(7039) 评论(0) 推荐(0) 编辑
  2019年3月31日
摘要: update user set `ph` = REPLACE(`ph`,'shenji.osnt.me','60.210.113.147:555'); 阅读全文
posted @ 2019-03-31 22:00 baraka 阅读(247) 评论(0) 推荐(0) 编辑
  2019年3月29日
摘要: select c1.`pid` ,count(*) as numfrom `user_contact` as c1where c1.`uid` in(select a2.`user_id` as num from `order_orderlistrow` as a1 INNER JOIN `orde 阅读全文
posted @ 2019-03-29 17:04 baraka 阅读(116) 评论(0) 推荐(0) 编辑
  2019年3月28日
摘要: 数据库样式 int 11 后台add.html: 阅读全文
posted @ 2019-03-28 10:33 baraka 阅读(3891) 评论(0) 推荐(0) 编辑
  2019年3月23日
摘要: 查询接口调用时,会存在多表关联和数据处理逻辑,这块导致查询速度非常慢。 之前对redis认识存在误区,redis的真正意义并不是单纯地将mysql的数据在缓存里存一份,而是简化数据库操作的逻辑 阅读全文
posted @ 2019-03-23 10:16 baraka 阅读(134) 评论(0) 推荐(0) 编辑
  2019年3月22日
摘要: 最简单的连接方法 1 手机电脑连接 usb 2 pc下载iTunes 3 信任电脑,手机信任设备(设置 》通用 》设备管理--》信任) 4 连接成功 阅读全文
posted @ 2019-03-22 15:35 baraka 阅读(2174) 评论(0) 推荐(0) 编辑
摘要: Laravel框架版本对PHP的要求如下: 5.6 PHP 7.1.3 或更高版本。 5.1 5.2 PHP 5.5.9 或更高版本。 4.2 PHP 5.4 或更高版本。 4.1 PHP 5.3.7 或更高版本。 下载:github.com/laravel/laravel 直接下载的是最新版本,可 阅读全文
posted @ 2019-03-22 11:13 baraka 阅读(647) 评论(0) 推荐(0) 编辑
  2019年3月21日
摘要: $thismonth = date('m');$thisyear = date('Y');if ($thismonth == 1) { $lastmonth = 12; $lastyear = $thisyear - 1;} else { $lastmonth = $thismonth - 1; $ 阅读全文
posted @ 2019-03-21 15:03 baraka 阅读(747) 评论(0) 推荐(0) 编辑
  2019年3月20日
摘要: data-source 关联模型通过id关联被关联表的name字段,没有name字段就报500 阅读全文
posted @ 2019-03-20 03:18 baraka 阅读(1482) 评论(2) 推荐(0) 编辑
  2019年3月18日
摘要: 1.注册成为开发者 链接:https://dev.jd.com/ 2.创建应用 3.获取appsrecet和appkey,SDK(获取) 新建应用之后在左边应用证书栏位可以查看到appkey,appsrecet,下载对应应用的sdk保存到本地。 4.必须要写好回调的URL用于接收京东方回传的code 阅读全文
posted @ 2019-03-18 15:54 baraka 阅读(2943) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 33 下一页