获得过 0 次赞
回答过的问题获得 0 次赞
分享过的文章/案例获得 0 次赞
评论与回复获得 0 次赞
- 小程序上线后任何账号都不能登陆
[图片] 在微信开发者工具里可以登陆,上线就登陆不上了,不知道为什么?
2023-04-25 - 在微信小程序里打不开PDF,用微信开发工具测试的时候是可以打开的,不知道要怎么修改代码?
[图片][图片] <web-view :src="url"></web-view> export default { data() { return { name: 'PDF', url: '', fileName:'', } }, onLoad() { this.name = this.$Route.query.name; this.fileName = this.$Route.query.fileName; //alert(this.name+"---"+this.fileName); uni.setNavigationBarTitle({ title: this.name }) this.getUrl(); }, methods: { getUrl() { this.url = 'https://yolide.oss-cn-shanghai.aliyuncs.com/'+encodeURIComponent(this.fileName); console.log(this.url); // } } }
2023-04-06