- 和教学视频相同的几行代码报错了怎么办?
[图片] 上图中的红色区域代码部分与小木学堂视频中的代码一模一样,但是开发者工具版本不一样。请问为什么我编译会报错?该怎么解决?我将该部分代码去掉(加上注释),则可以编译成功,其他代码的功能可以实现。如下图: [图片] 以下是js和wxml的源代码: Page({ /** * 页面的初始数据 */ data: { city:"", today:{}, future:{} }, /** * 生命周期函数--监听页面加载 */ onLoad: function (options) { this.loadInfo(); }, /** * 生命周期函数--监听页面初次渲染完成 */ onReady: function () { }, /** * 生命周期函数--监听页面显示 */ onShow: function () { }, /** * 生命周期函数--监听页面隐藏 */ onHide: function () { }, /** * 生命周期函数--监听页面卸载 */ onUnload: function () { }, /** * 页面相关事件处理函数--监听用户下拉动作 */ onPullDownRefresh: function () { }, /** * 页面上拉触底事件的处理函数 */ onReachBottom: function () { }, /** * 用户点击右上角分享 */ onShareAppMessage: function () { }, loadInfo: function(){ var page=this; wx.getLocation({ type: 'gcj02', //返回可以用于wx.openLocation的经纬度 success: function (res) { var latitude = res.latitude; var longitude = res.longitude; console.log(latitude,longitude); page.loadCity(latitude,longitude); } }) }, loadCity:function(latitude,longitude){ var page = this; wx.request({ url: 'http://api.map.baidu.com/geocoder/v2/?ak=arkRAvFzRAbKWcBsMtaWC9Zz1qALwCiS&location=34.34127,108.93984&output=json', //仅为示例,并非真实的接口地址 data: { x: '', y: '' }, header: { 'content-type': 'application/json' // 默认值 }, success: function (res) { console.log(res); var city=res.data.result.addressComponent.city; city=city.replace("市",""); page.setData({city:city}); page.loadWeather(city); } }) }, loadWeather:function(city){ var page = this; wx.request({ url: 'http://wthrcdn.etouch.cn/weather_mini?city=%E8%A5%BF%E5%AE%89', //仅为示例,并非真实的接口地址 data: { x: '', y: '' }, header: { 'content-type': 'application/json' // 默认值 }, success: function (res) { console.log(res); /* *var future=res.data.data.forecast; *var todayInfo=future.shift(); *var today=res.data.data; *today.todayInfo=todayInfo; *page.setData({today:today,future=future}); */ } }) } }) /* *以下是wxml代码 */ <view class='content'> <view class='today'> <view class="info"> <view class='temp'>{{today.wendu}}25°C</view> <view class='weather'>晴朗 东风2~3级</view> <view>友情提示:天气晴朗,阳光明媚,适合外出</view> <view class="city">{{city}} </view> </view> </view> <view class='future'> </view> </view> 折磨我好久了,求大神指点!
2018-01-16 - 背景图片无法铺满这个屏幕
.content{ font-family: 微软雅黑,宋体; height: 100%; width: 100%; font-size: 14px; background-size:cover; background-image: url("https://timgsa.baidu.com/timg?image&quality=80&size=b9999_10000&sec=1515673917986&di=1c9513c3e2f07003d675e08146ef6b54&imgtype=0&src=http%3A%2F%2Fdown.tutu001.com%2Fd%2Ffile%2F20110706%2F33e9ccfa719f00dc54fb0beec7_560.jpg"); wxss代码如上图,便宜是成功的,但是height设置成100%似乎没有作用,背景图片依然只显示有文字的那部分。如何让图片铺满整个屏幕呢? [图片]
2018-01-11 - 如何在两个*之间输出多个空格
想输出用*组成一个心形,但是*之间不知如何输出多个空格
2018-01-02