Vue调用WebService和API


<script src="~/Scripts/vue.js" ></script >
<table>
    <tr v-for="log in log">
        <td>
            
        </td>
    </tr>
</table>

<script type="text/javascript">
    new Vue({
        el: 'table',        
        data: {
            log:[]
        },
        created :function() {
            //fetch("http://localhost:58513/api/decheng/")
            //fetch("http://api.myjson.com/bins/74l63")
            fetch("http://localhost:55289/RoleWebService.asmx/GetRolesAll", {
                method: 'POST',
                headers: {
                    'Content-Type': 'application/json',
                }
            })
            //fetch("http://localhost:55289/RoleWebService.asmx/GetRole", {
            //    method: 'POST',
            //    headers: {
            //        'Content-Type': 'application/json',
            //    },
            //    body: '{Id:1}'
            //})
            .then(m=> m.json())
            .then(json=> { this.log = json.d; });
        }
    });
</script>

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM