微信小程序源生切換到uniapp注意事項
一 tabBar不顯示的問題
tabBar放在pages下面,不能放在globalStyle下面
二 小程序的標簽不起效
bindinput改成@input
this.data改成this.$data
this.setData改成this.$data
bindtap改成@click
data-name="{{book1}}"改成v-bind:data-name="book1"
三 navigateTo不起效
url注意絕對路徑
url: '/pages/read_book/read_book'
四 uni.getFileSystemManager調(diào)試失敗
uni.getFileSystemManager僅支持部分小程序
需要進行判斷
異步(uni.getSystemInfo)和同步(uni.getSystemInfoSync)的2個API獲取系統(tǒng)信息
switch (uni.getSystemInfoSync().platform) {
? case 'web':
? ? console.log('Web');
? ? break;
? case 'mp-weixin':
? ? console.log('mp-weixin');
? ? break;
? default:
? ? console.log('開發(fā)者工具');
? ? break;
}
五 靜態(tài)文件跨域
對于頁面,在后端添加
fastadmin的配置項為config.php的cors_request_domain
對于靜態(tài)文件,在后端添加無效
直接在nginx中針對文件的類型進行設置
location ~ .*\.(txt)?$
{
? ? ? add_header 'Access-Control-Allow-Origin' '*';
? ? ? add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
? ? ? add_header 'Access-Control-Allow-Headers' 'Authorization,DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
}
六 UI切換
weui切換到uni-ui,直接安裝插件
部分寬度涉及到計算時
width: calc(100% - 13px);