首页 > 代码库 > vue.js中ajax请求
vue.js中ajax请求
<div id="app"> <table style="border-collapse: collapse"> <thead> <tr style="line-height: 30px;"> <th style="width:20px; padding: 0 10px; border: 1px solid #ccc;">id</th> <th style="width:150px; padding: 0 10px; border: 1px solid #ccc;">item_name</th> <th style="width:500px; padding: 0 10px; border: 1px solid #ccc;">content</th> <th style="width:80px; padding: 0 10px; border: 1px solid #ccc;">way</th> <th style="width:150px; padding: 0 10px; border: 1px solid #ccc;">method</th> </tr> </thead> <tbody> <tr v-for="items in message" style="line-height: 30px;"> <td style="width:20px; padding: 0 10px; border: 1px solid #ccc;">{{ items.id }}</td> <td style="width:150px; padding: 0 10px; border: 1px solid #ccc;">{{ items.item_name }}</td> <td style="width:500px; padding: 0 10px; border: 1px solid #ccc;">{{ items.content }}</td> <td style="width:80px; padding: 0 10px; border: 1px solid #ccc;">{{ items.way }}</td> <td style="width:150px; padding: 0 10px; border: 1px solid #ccc;">{{ items.method }}</td> </tr> </tbody> </table> </div> <script> var app = new Vue({ el:"#app10", data:{ message:‘‘ }, methods:{ created:function(){ var sss = this; $.ajax({ url:"请求地址", success:function(e){ sss.message = e.data; console.log(sss.message) } }) } } }); app.created(); </script>
vue.js中ajax请求
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。