- weex初探 —— 追书神器
- 1.使用 weex-toolkit 初始化工程
- 2.android代码是用户Android studio 创建再引入weex-sdk
- 1.网络请求 (采用weex自带的stream模块 再将其封装成常规fetch风格的方式)
- 2.Vue Router (使用vue单页面模式 用前端路由做页面跳转 将大部分交互交于前端来实现)
- 3.Vuex (状态管理。特别是移动端没有前端页面刷新操作 可以很方便的做全局变量以及状态管理)
- 4.开发模式模式 (接口跨域问题)
- 5.界面问题 ()
npm install
src/*
: all source codeapp.js
: entrance of the Weex pagebuild/*
: some build scriptsdist/*
: where places generated codeassets/*
: some assets for Web previewindex.html
: a page with Web preview and qrcode of Weex js bundleweex.html
: Web render.babelrc
: babel config (preset-2015 by default).eslintrc
: eslint config (standard by default)
# build both two js bundles for Weex and Web
npm run build
# build the two js bundles and watch file changes
npm run dev
# start a Web server at 8080 port
npm run serve
# start weex-devtool for debugging with native
npm run debug
You can config more babel, ESLint and PostCSS plugins in webpack.config.js
.