💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 调用(网站配置)数据 # ### 以下Html标签仅作为演示,具体根据自身实际情况修改 # **调用网站标题** ``` <title>{{title}}</title> ``` **调用网站关键词** ``` <meta name="keywords" content="{{keyword}}"/> ``` **调用网站描述** ``` <meta name="description" content="{{desc}}"/> ``` # 调用(采集文章)数据 **调用文章标题** ``` <title>{{text.title}}</title> ``` **调用文章内容** ``` <p>{{text.text}}</p> ``` **调用文章网址** ``` <a href="{{text.uri}}">{{text.title}}</a> ``` **调用文章发布时间** ``` <p>{{text.time}}</p> ``` **调用文章关键词** ``` <meta name="keywords" content="{{text.keyword}}"/> ``` **调用文章描述** ``` <meta name="description" content="{{text.desc}}"/> ``` # 调用 [数据集合] 的方法 PS:标签结尾带 s 的表示多个数据集合,需要用以下语法访问数据 假设:xxoo = [ 1, 2, 3] ``` {% for i in range(10) %} {{ xxoo[i] }} {% endfor %} ``` 使用以上语法可依次取出xxoo里面的数据 1 2 3 PS: range方法里面的参数最大不能超过 30,即:range(30) # 调用(文章集合) ``` {% for i in range(10) %} <h3><a href="{{texts[i].uri}}>{{texts[i].title}}</a></h3> {% endfor %} ``` # 调用(关键词集合) ``` {% for i in range(10) %} <h3>{{keywords[i]}}</h3> {% endfor %} ``` # 调用(域名集合) ``` {% for i in range(10) %} <h3>{{domains[i]}}</h3> {% endfor %} ``` # 调用(外链集合) ``` {% for i in range(10) %} <h3>{{links[i]}}</h3> {% endfor %} ``` # 调用(随机字符集合) ``` {% for i in range(10) %} <h3>{{strs[i]}}</h3> {% endfor %} ``` # 其他用法 截取指定数量的文字,80 更改为自己需要的具体数字 ``` <p>{{text.text|truncate(80, killwords=True, leeway=0)}}</p> ```