Commit f2e64bf4 authored by 高洋's avatar 高洋

Updates mutillanguage.md

Auto commit by GitBook Editor
parent 55d11807
##字段级通用方法
*设置字段必填或者非必填属性Hel.setRequired(id,flag);
第一个参数id为字段的id,第二个参数flag为true时将该字段设为必填,为false时将该字段设为非必填。
```html
<h:hlsMaskedTextBox id="maskedTextBox"/>
```
```javascript
Hel.setRequired('maskedTextBox',true);
```
\ No newline at end of file
\#界面多语言实现
#界面多语言实现
界面中的多语言在数据库中统一存放在sys\_prompts表中,系统启动时加载进redis缓存。界面中实现多语言是通过freemarker的标签以及对应的多语言code来实现。
界面中的多语言在数据库中统一存放在sys_prompts表中,系统启动时加载进redis缓存。界面中实现多语言是通过freemarker的标签以及对应的多语言code来实现。
例如:“确定”的多语言code是“sys.hand.btn.ok”在界面中的写法:
\`\`\`html
&lt;@spring.message "sys.hand.btn.ok"/&gt;
\`\`\`
```html
<@spring.message "sys.hand.btn.ok"/>
```
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment