> 注意:在进行版本的升级时,由于一些必要原因,个别版本的升级并非完全无缝,请尽量按照本升级指导的建议进行调整。
>
* 从`1.05.411`升级到`1.05.414`
* 替换`根目录\application\yunj\config`配置文件目录
* 从`1.05.322`升级到`1.05.411`
* 替换`根目录\application\yunj\config`配置文件目录
* 新增:错误页面控制器配置`配置文件目录\admin.php`
'error_controller' => "demo/error",
错误页面控制器示例如下:
```php
namespace app\demo\controller;
use yunj\Controller;
use yunj\traits\admin\ErrorController;
class Error extends Controller {
// 必须
use ErrorController;
}
```
* 从`1.05.260`升级到`1.05.322`
* 替换`根目录\application\yunj\config`配置文件目录
* 新增:文件控制器配置`配置文件目录\file.php`
'controller' => "demo/file",
文件控制器示例如下:
```php
namespace app\demo\controller;
use yunj\traits\admin\FileController;
class File extends DemoController {
use FileController;
}
```
* 从`1.05.123`升级到`1.05.260`
* 替换`根目录\application\yunj\config`配置文件目录
* 新增:后台首页控制器配置`配置文件目录\admin.php`
'index_controller' => "demo/index",
首页控制器示例如下:
```php
namespace app\demo\controller;
use yunj\traits\admin\IndexController;
class Index extends DemoController {
// 必须
use IndexController;
// 必须
public function welcome(){
return $this->fetch();
}
}
```
* 弃用:后台首页路由地址配置 admin.php
'welcome_route'=>'demo/welcome/index',
* 以上变更内容可详见`demo`模块
- 序言
- 基础
- 下载安装
- 配置
- 版本查看
- 控制器
- 使用说明
- 输出构建器参数
- 视图模板
- 使用说明
- 区块重写
- seo
- head_style
- head_script
- content
- script
- 验证器
- TP验证器
- 使用说明
- 自动处理
- 数据处理
- 前端验证器
- 概述
- 调用示例
- 通用验证规则
- 表单构建器
- 基础示例
- 初始化
- 链式操作
- tab
- url
- field
- fieldValidate
- button
- load
- submit
- 渲染输出
- 字段配置
- 使用说明
- 隐藏域(hidden)
- 文本框(text)
- 文本域(textarea)
- 密码框(password)
- 富文本(editor)
- 文档编辑(markdown)
- 下拉选框(select)
- 单选框(radio)
- 复选框(checkbox)
- 开关(switch)
- 日期(date)
- 时间日期(datetime)
- 年份(year)
- 月份(month)
- 时间(time)
- 单图(img)
- 多图(imgs)
- 单文件(file)
- 多文件(files)
- 取色器(color)
- 地区联动(area)
- 下拉搜索(dropdown_search)
- 树(tree)
- 自定义字段
- 单一字段调用
- 概述
- 示例
- 表格构建器
- 基础示例
- 初始化
- 链式操作
- state
- url
- page
- limit
- limits
- filter
- filterValidate
- toolbar
- defaultToolbar
- import
- cols
- count
- items
- event
- 渲染输出
- 表头配置
- 使用说明
- 操作栏(action)
- 时间日期(datetime)
- 单图(img)
- 多图(imgs)
- 单文件(file)
- 多文件(files)
- 拖拽排序(drag_sort)
- 颜色呈现(color)
- 地区呈现(area)
- 枚举(enum)
- 自定义表头
- JS事件
- 异步事件监听
- 导入构建器
- 基础示例
- 初始化
- 链式操作
- sheets
- cols
- colsValidate
- limit
- tips
- row
- rows
- 渲染输出
- 主题开发
- 实现步骤
- 系统主题
- 注意
- PHP公共方法库
- 配置
- yunj_config
- 构建器
- YF
- YT
- YI
- 重定向
- url_tips
- redirect_tips
- throw_redirect
- 响应输出
- response_msg
- response_json
- success_json
- error_json
- throw_json
- throw_success_json
- throw_error_json
- 数组
- array_eq
- array_in
- array_supp
- array_depth
- array_insert
- array_key_prefix
- 验证
- is_mobile
- is_positive_integer
- is_json
- is_datetime
- is_md5_result
- 时间日期
- msectime
- 字符串
- rand_char
- filter_sql
- start_with
- exception_to_str
- JS公共方法库
- 调用说明
- 数据类型
- varType
- 判断
- isMobile
- isObj
- isEmptyObj
- isArray
- isEmptyArray
- isString
- isEmptyString
- isBool
- isNumber
- isFloat
- isUndefined
- isJson
- isCsv
- isXls
- isXlsx
- 字符串
- fileExt
- fileNameExt
- currTimestamp
- currDatetime
- timestampFormat
- 对象
- objSupp
- 图片
- previewImg
- url
- url
- urlParam
- urlPushParam
- 页面
- openNewPage
- openTab
- openPopup
- rawPageWin
- redirectTab
- redirectLogin
- isPopupPage
- isTabPage
- currPageId
- close
- closeCurr
- closeAll
- 网络
- request
- 附录
- 升级指导
- 更新日志