{% if search %}
搜尋: {{ search }}
{% endif %}
Read json file (推特訊息格式)
{% if search %}
總共查詢到 {{ jsonLog['word'] }} 個符合的資料,共{{ jsonLog['char'] }}個字數,{{ jsonLog['sentence'] }}個句子
{% endif %}
| 發文人 |
訊息 |
動作 |
{% for data in jsonData %}
| {{ data['username'] }} |
{{ data['tweet_text']|safe }} |
檢視 |
{% endfor %}
Read xml file (W3Schools)
{% if search %}
總共查詢到 {{ xmlLog['word'] }} 個符合的資料,共{{ xmlLog['char'] }}個字數,{{ xmlLog['sentence'] }}個句子
{% endif %}
| 分類 |
書名 |
描述 |
作者 |
年分 |
價格 |
{% for data in xmlData %}
| {{ data['category'] }} |
{{ data['title'] }} |
{{ data['description']|safe }} |
{{ data['author'] }} |
{{ data['year'] }} |
{{ data['price'] }} |
{% endfor %}
{% endblock %}