weex 基于vue2.0开发框架,包括三端集成、组件库提供、weex api封装~
目前 Weex 官网域名统计如下:
https://weex.apache.org : Apache 官网地址,部署于 apache 仓库,国内访问速度较慢。
https://weex-project.io : Weex 官网中国镜像,部署于阿里云,国内访问速度较快。
大家可根据实际需求选择访问。
先简单熟悉一下weex的工作原理,这里引用一下weex官网上的一张图片,详细信息见官网
像前面说的那样weex和vue一直在努力的进行生态互通,而且weex实现web标准化是早晚的问题,所以也建议开发者不要在用.we做后缀来开发了
关于android、ios、h5平台的集成与打包问题,在项目中都以解决~
可以使用weexpack相关功能~
代码检查是必要的操作,为了能够拥有vue开发的体验,将eslint集成进来~
注:
由于weexpack暂不支持vue问题,打包相关后续会集成进来~
"dependencies": {
"vue": "^2.2.5",
"vue-router": "^2.3.0",
"vuex": "^2.2.1",
"vuex-router-sync": "^4.0.1",
"weex-vue-render": "^0.1.9"
},
"devDependencies": {
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"css-loader": "^0.26.4",
"eslint": "^3.15.0",
"eslint-config-standard": "^6.2.1",
"eslint-loader": "^1.6.1",
"eslint-plugin-html": "^2.0.1",
"eslint-plugin-promise": "^3.4.2",
"eslint-plugin-standard": "^2.0.1",
"postcss-cssnext": "^2.9.0",
"serve": "^1.4.0",
"vue-loader": "^10.3.0",
"vue-template-compiler": "^2.2.5",
"webpack": "^1.14.0",
"weex-devtool": "^0.2.64",
"weex-loader": "^0.4.4"
}
1、 遍历.vue文件后缀,生成相应的entry.js文件
function getEntryFileContent (entryPath, vueFilePath) {
const relativePath = path.relative(path.join(entryPath, '../'), vueFilePath);
return 'let App = require("${relativePath}")
// 全局注册 root 组件
Vue.component('root', require("components/root"))
// 全局注册 navpage 组件
Vue.component('navpage', require("components/navpage"))
App.el = '#root'
new Vue(App)'
}
...
2、通过weex-loader打包生成native jsbundle 3、 通过weex-vue-loader打包生成web jsbundle
...
const webConfig = getBaseConfig()
webConfig.entry = {
entry: path.resolve('./src/entry.js')
}
webConfig.output = {
path: 'dist/web',
filename: '[name].js'
}
webConfig.module.loaders[1].loaders.push('vue')
const weexConfig = getBaseConfig()
weexConfig.output.filename = 'weex/[name].js'
weexConfig.module.loaders[1].loaders.push('weex')
weex-frame
├── platforms (平台项目)
│ │
│ ├── android
│ └── ios
│
├── src (weex模块)
│ ├── api (api模块)
│ ├── components(组件模块)
│ ├── constants(常量配置)
│ ├── utils (工具模块)
│ └── views(视图模块)
│
└── dist (build输出模块)
├── weex (native使用jsbundle)
└── web(web使用jsbundle)
<!-- :title="title" -->
<!-- leftItemSrc="https://gitlab.com/toonteam/weex/raw/ce656f79084ed9db357f8abd76c6e6c82dc5a28d/src/views/person-info/imgs/back.png" -->
<!-- rightItemSrc="http://gtms02.alicdn.com/tps/i2/TB1ED7iMpXXXXXEXXXXWA_BHXXX-48-48.png" -->
<!-- @naviBarLeftItemClick="onBack" -->
<!-- @naviBarRightItemClick="onReload"> -->
npm install -g weexpack
// 调试本地serve
npm run init serve
// 调试assets或者jsbundle文件
npm run init local
或者:
weexpack run android
或者:
weexpack run ios
打开 http://localhost:8080/web/index.html
或者:
weexpack run web