控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Formguide.php 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Yzncms [ 御宅男工作室 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018 http://yzncms.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: 御宅男 <530765310@qq.com>
  10. // +----------------------------------------------------------------------
  11. // +----------------------------------------------------------------------
  12. // | 表单模型
  13. // +----------------------------------------------------------------------
  14. namespace addons\formguide\model;
  15. use addons\formguide\library\Service;
  16. use think\Db;
  17. use think\Model;
  18. class Formguide extends Model
  19. {
  20. protected $name = 'ModelField';
  21. protected $autoWriteTimestamp = false;
  22. //添加模型内容
  23. public function addFormguideData($formid, $data)
  24. {
  25. //完整表名获取
  26. $tablename = $this->getModelTableName($formid);
  27. $data['user_id'] = \app\member\service\User::instance()->id;
  28. $data['username'] = \app\member\service\User::instance()->username ?: '游客';
  29. //处理数据
  30. $data = Service::dealModelPostData($formid, $data);
  31. $data['create_time'] = request()->time();
  32. $data['ip'] = request()->ip();
  33. try {
  34. //主表
  35. $id = Db::name($tablename)->insertGetId($data);
  36. } catch (\Exception $e) {
  37. throw new \Exception($e->getMessage());
  38. }
  39. return $id;
  40. }
  41. /**
  42. * 根据模型ID,返回表名
  43. * @param type $modelid
  44. * @return string
  45. */
  46. protected function getModelTableName($modelid)
  47. {
  48. //读取模型配置 以后优化缓存形式
  49. $model_cache = cache("Model");
  50. //表名获取
  51. return $model_cache[$modelid]['tablename'];
  52. }
  53. }