博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
vue-webpack中引入jquery和bootstrap,使用jsonp-vue
阅读量:6604 次
发布时间:2019-06-24

本文共 463 字,大约阅读时间需要 1 分钟。

vue-webpack中引入jquery和bootstrap// 引入 https://blog.csdn.net/guorui_cara/article/details/78616281使用jsonp-vue// 安装 install jsonp// 引入 import jsonp from 'jsonp'Vue.prototype.$jsonp = jsonpvar url = 'https://api.douban.com/v2/movie/top250?count=10'this.$jsonp(url, null, (err, data) => {    if (err) {        console.error(err.message);    } else {        if (data) {            console.log(data);        }    }})复制代码

转载于:https://juejin.im/post/5b9c617cf265da0a8e6d72ce

你可能感兴趣的文章
我的友情链接
查看>>
Python 编程中常用的12种基础知识总结
查看>>
关于/.svn/源代码泄漏的问题
查看>>
Winetricks download
查看>>
编译型语言VS解释型语言
查看>>
Event handling for iOS - how hitTest:withEvent: and pointInside:withEvent: are related?
查看>>
Mybatis Generator 不识别主键
查看>>
Nginx 400 Bad Request | The plain HTTP request was sent to HTTPS port
查看>>
ftp指定本地用户访问的目录
查看>>
python 自定义模块的引用
查看>>
Zabbix 监控ESXi服务器【非虚拟机】CPU、内存、硬盘、网络带宽
查看>>
HTML5之SessionStorage本地存储
查看>>
error: cannot find javah找不到javah解决办法
查看>>
我的友情链接
查看>>
三种问题可能导致无线路由间歇断开网络
查看>>
MySQL的安装和使用
查看>>
lduan SCDPM 保护组与系统状态(五)
查看>>
我的友情链接
查看>>
docker command and docker file variables
查看>>
说说红黑树
查看>>