- Template is data
- Template should have data structure
- Template can be stored in Database
- Template can be queried and computed
- Render is compute between template and data or between template and template
- Template can be render in anywhere anytime.
- Template and data should have same data structure which is JSON.
- Template item and data item are matching by the key(not exact match)
- For template, CSS Selector is key, element must has a unique CSS Selector
- For data, key is same as namespace
- HTML tag will be ignored from the template element key while rendering, so data key will only match the HTML element's class and id
- JSON HTML template structure
- Render from Client side
Template: var template = { "#user.info" : { "lable.nameDes" : "", "input.name" : {"attrs" : "type='text'"}, ".gender" : { "lable.genderDes" : "", "input.male" : {"attrs" : "type='radio'"}, "lable.maleDes" : "", "input.female" : {"attrs" : "type='radio'"}, "lable.femaleDes" : "" }, "lable.nationDes" : "", "select.nation" : "", "lable.skillDes" : "", "textArea.skill" : "" } };
i18n: var i18n_en = { "user.info" : { ".nameDes" : "Name:", ".gender" : { ".genderDes" : "Gender:", ".maleDes" : "Male", ".femaleDes" : "Female", }, ".nationDes": "Country", ".nation": "options => {"USA": "US", "China": "CN"}", ".skillDes" : "Skills:" } }
Data: var data = { "user.info" : { ".name" : "Guangtao", ".gender" : { ".male" : true }, ".nation": "CN", ".skill": "JSON-Flyer" } }
Client side code:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js" type="text/javascript"></script>
<script src="http://localhost:3000/jsonFlyer.js" type="text/javascript"></script>
<script type="text/javascript">
Result(value part is fake here, try out in browser by yourself): [[https://github.com/heroygt/JSON-Flyer/wiki]]