vuejs 获取.json文件并应用到模板 demo
看了官网的 API 还是没怎么明白, 实例也没有, 在别的 圆主中看到,本地测试时可用,并附加 json文件 。
原链接:http://www.cnblogs.com/ikuyka/p/5766867.html
<!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <title>vuejs获取json文件并应用到模板demo</title> <meta http-equiv = "X-UA-Compatible" content = "IE=edge,chrome=1" /> <meta name="viewport" content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" /> <meta http-equiv="pragram" content="no-cache"> </head> <style> .completed { text-decoration: line-through; } .something { color: red; } </style> <body> <div class="container"> <div id="app"> <task-app :list="tasks"> </task-app> </div> <template id="task-template"> <ul> <li v-for="task in list"> {{ task.时间 }} | {{ task.author }} | {{ task.name }} | {{ task.price }} </li> </ul> </template> <script type="text/javascript" src="vue.min.js"></script> <script src="https://cdn.jsdelivr.net/vue.resource/1.0.0/vue-resource.min.js"></script> <script> Vue.component('task-app', {//要应用的标签 template: '#task-template',//模板id props: ['list']//请求的json }) </script> <script> var demo = new Vue({ el: '#app', data: { tasks: '' //为空,可以是null }, ready: function() { this.getCustomers() }, methods: { getCustomers: function() { this.$http.get('resourse.json') .then(function(response) { //response传参,可以是任何值 this.$set('tasks', response.data) }) .catch(function(response) { console.log(response) }) } } }) </script> </body> </html>
resourse.json :
[
{"时间":1,"author":"曹雪芹","name":"红楼梦","price":32},
{"时间":2,"author":"施耐庵","name":"水浒传","price":30},
{"时间":"3","author":"罗贯中","name":"三国演义","price":24},
{"时间":4,"author":"吴承恩","name":"西游记","price":20}
]
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· 阿里巴巴 QwQ-32B真的超越了 DeepSeek R-1吗?
· 【译】Visual Studio 中新的强大生产力特性
· 10年+ .NET Coder 心语 ── 封装的思维:从隐藏、稳定开始理解其本质意义
· 【设计模式】告别冗长if-else语句:使用策略模式优化代码结构