浏览模式: 普通 | 列表
9月, 2024 | 1

uniapp——下拉刷新

[ 2024-09-07 10:42:46 | 作者: admin ]
p.s. 需要设置pages.json和具体pages页面相关内容,PullDownRefresh 部分
import {
  onLoad,
  onReachBottom,
  onPullDownRefresh
} from '@dcloudio/uni-app'
onPullDownRefresh(() => {
  getList()
  setTimeout(() => {
    uni.stopPullDownRefresh()
  }, 1000);
})

{
  "path": "pages/index/list",
  "style": {
    "navigationBarTitleText": "列表",
    "enablePullDownRefresh": true,
    "navigationStyle": "custom"
  }
},
...

阅读全文…
p.s. 配置了下nginx,404问题解决

环境
代码:uniapp+vue
线上环境:nginx
H5项目编译目录:如移动端名称“h5”,放在域名执行的根目录

问题分析
本地正常,线上404,是文件未找到,即文件路径错误,即域名:
www.yourdomain.com/h5 //正常访问
内页刷新404,原因看链接,正常是404链接是没有查h5里面的js,css,而是域名目录下的js,css,那就是针对目录问题,让程序执行/h5目录下的js,css

nginx配置
location /h5 {
  root /www/wwwroot/jiaxin/public/h5;
  #alias /www/wwwroot/jiaxin/public/h5; #这样也可以
  try_files $uri $uri/ /index.html last;
...

阅读全文…
p.s. 对象的调用可以用点.或者类似数组的方括号[]调用,但是数组则必须用方括号[]调用。
concat()函数必须用在数组对象,例如 array1.concat() ,而对象无法用这个函数


一、{ } 大括号,表示一个对象
{key1:value1 , key2:value2}


value可为变量或者函数 ,调用对象属性或者方法通常用点号
let obj = {
         birth: 1990,
         fun1: function () {
                let fn = () => new Date().getFullYear() - this.birth; // this指向obj对象
                return fn();
         },
         fun2: (x) => x * x
...

阅读全文…
1