weexapp 开发流程(二)框架搭建
1.创建 入口文件
src / entry.js
/**
* 入口文件
*/
import App from './App.vue'
import router from './router'
// import { sync } from 'vuex-router-sync'
import * as filters from './filters'
import mixins from './mixins' // sync the router with the vuex store.
// this registers `store.state.route`
// sync(store, router) // register global utility filters.
Object.keys(filters).forEach(key => {
Vue.filter(key, filters[key])
}) // register global mixins.
Vue.mixin(mixins) import VueResource from 'vue-resource'
Vue.use(VueResource)
// create the app instance.
// here we inject the router and store to all child components,
// making them available everywhere as `this.$router` and `this.$store`.
new Vue(Vue.util.extend({ el: '#root', router }, App)); router.push('/');
2.创建 主页面 底部选项卡 工具类
(1)创建主页面
src / App.vue
<!-- 主页面 底部选项卡 -->
<template>
<div class="app-wrapper">
<router-view class="r-box"></router-view>
<tab-bar @tabTo="onTabTo"></tab-bar>
</div>
</template> <style>
body{
margin: 0;
padding: 0;
background-color: #f4f4f4;
color:#333;
}
</style> <style scoped>
.app-wrapper{
background-color: #f4f4f4;
}
.r-box{
position: absolute;
top:0;
left: 0;
right: 0;
bottom: 0;
}
</style> <script>
// 弹窗
var modal = weex.requireModule('modal');
// 工具类
import util from './assets/util';
// 底部选项卡组件
import tabBar from './assets/components/tabBar.vue'; export default {
data () {
return {
}
},
components: {
'tab-bar': tabBar
},
created () {
util.initIconFont();
},
methods: {
onTabTo(_result){
let _key = _result.data.key || '';
this.$router && this.$router.push('/'+_key)
}
}
}
</script>
(2)创建 底部选项卡 组件
src / assets / components / tabBar.vue
<!-- 底部选项卡 组件 -->
<template>
<div class="wrapper">
<div class="bar-item" @click="tabTo('home')">
<text class="bar-ic iconfont" :style="testCS"></text>
<text class="bar-txt">首页</text>
</div>
<div class="bar-item" @click="tabTo('top')">
<text class="bar-ic iconfont"></text>
<text class="bar-txt">推荐</text>
</div>
<div class="bar-item act" @click="tabTo('demo')">
<text class="bar-ic iconfont"></text>
<text class="bar-txt">分类</text>
</div>
<div class="bar-item" @click="tabTo('all')">
<text class="bar-ic iconfont"></text>
<text class="bar-txt">PHP教程</text>
</div>
<div class="bar-item" @click="tabTo('my')">
<text class="bar-ic iconfont"></text>
<text class="bar-txt">关于</text>
</div>
</div>
</template> <style scoped>
.iconfont {
font-family:iconfont;
}
.wrapper{
position: fixed;
bottom: 0;
left: 0;right: 0;
height: 90px;
flex-wrap: nowrap;
flex-direction: row;
justify-content: space-around;
border-top-width: 1px;
border-top-color: #d9d9d9;
background-color: #fafafa;
}
.bar-item{
flex: 1;
}
.bar-txt,.bar-ic{
color:#666;
text-align: center;
}
.bar-active{
color:#b4282d;
}
.bar-ic{
padding-top: 7px;
font-size: 38px;
}
.bar-txt{
font-size: 22px;
padding-top: 1px;
}
</style> <script>
// 弹窗
var modal = weex.requireModule('modal'); export default {
computed:{
testCS:function () {
return this.pIndexKey == 'home'?'color:#b4282d;':''
}
},
data () {
return {
pIndexKey:'home'
}
},
mounted(){
},
methods: {
tabTo(_key){
if(this.pIndexKey == _key) return;
this.pIndexKey = _key;
this.$emit('tabTo',{
status : 'tabTo',
data : {
key : _key
}
})
}
}
}
</script>
其他页面,例如:首页
src / assets / views / home.vue
<!-- 首页 -->
<template>
<div>
<text>首页</text>
</div>
</template> <style scoped> </style> <script>
export default {
data () {
return {
}
}
}
</script>
(3)创建 工具类
src / assets / util.js
/**
* 工具类
*/
let utilFunc = {
initIconFont () {
let domModule = weex.requireModule('dom');
domModule.addRule('fontFace', {
'fontFamily': "iconfont",
'src': "url('http://at.alicdn.com/t/font_493435_f28oeelm5i8xs9k9.ttf')"
});
},
setBundleUrl(url, jsFile) {
const bundleUrl = url;
let host = '';
let path = '';
let nativeBase;
const isAndroidAssets = bundleUrl.indexOf('your_current_IP') >= 0 || bundleUrl.indexOf('file://assets/') >= 0;
const isiOSAssets = bundleUrl.indexOf('file:///') >= 0 && bundleUrl.indexOf('WeexDemo.app') > 0;
if (isAndroidAssets) {
nativeBase = 'file://assets/dist';
} else if (isiOSAssets) {
// file:///var/mobile/Containers/Bundle/Application/{id}/WeexDemo.app/
// file:///Users/{user}/Library/Developer/CoreSimulator/Devices/{id}/data/Containers/Bundle/Application/{id}/WeexDemo.app/
nativeBase = bundleUrl.substring(0, bundleUrl.lastIndexOf('/') + 1);
} else {
const matches = /\/\/([^\/]+?)\//.exec(bundleUrl);
const matchFirstPath = /\/\/[^\/]+\/([^\s]+)\//.exec(bundleUrl);
if (matches && matches.length >= 2) {
host = matches[1];
}
if (matchFirstPath && matchFirstPath.length >= 2) {
path = matchFirstPath[1];
}
nativeBase = 'http://' + host + '/';
}
const h5Base = './index.html?page=';
// in Native
let base = nativeBase;
if (typeof navigator !== 'undefined' && (navigator.appCodeName === 'Mozilla' || navigator.product === 'Gecko')) {
// check if in weexpack project
if (path === 'web' || path === 'dist') {
base = h5Base + '/dist/';
} else {
base = h5Base + '';
}
} else {
base = nativeBase + (!!path? path+'/':'');
} const newUrl = base + jsFile;
return newUrl;
},
getUrlSearch(url,name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = url.slice(url.indexOf('?')+1).match(reg);
if (r != null) {
try {
return decodeURIComponent(r[2]);
} catch (_e) {
return null;
}
}
return null;
}
}; export default utilFunc;
3.创建 路由
src / router.js
/**
* 配置路由
*/
import Router from 'vue-router'
// 首页
import ViewHome from './assets/views/home.vue'
// 关于
import ViewMy from './assets/views/my.vue'
// PHP教程
import ViewAll from './assets/views/all.vue'
// 分类
import Viewdemo from './assets/views/demo.vue'
// 推荐
import ViewTopbvive from './assets/views/top.vue' Vue.use(Router) export default new Router({
// mode: 'abstract',
routes: [
// 默认页面 首页
{
path: '/',
redirect: '/home'
},
// 首页
{
path: '/home',
component: ViewHome
},
// 关于
{
path: '/my',
component: ViewMy
},
// 分类
{
path: '/demo',
component: Viewdemo
},
// PHP教程
{
path: '/all',
component: ViewAll
},
// 推荐
{
path: '/top',
component: ViewTopbvive
}
]
})
4.创建 公用过滤器 filters
src / filters / index.js
export function host (url) {
if (!url) return ''
const host = url.replace(/^https?:\/\//, '').replace(/\/.*$/, '')
const parts = host.split('.').slice(-3)
if (parts[0] === 'www') parts.shift()
return parts.join('.')
} export function https (url) {
const env = weex.config.env || WXEnvironment
if (env.platform === 'iOS' && typeof url === 'string') {
return url.replace(/^http\:/, 'https:')
}
return url
} export function timeAgo (time) {
const between = Date.now() / 1000 - Number(time)
if (between < 3600) {
return pluralize(~~(between / 60), ' minute')
} else if (between < 86400) {
return pluralize(~~(between / 3600), ' hour')
} else {
return pluralize(~~(between / 86400), ' day')
}
} function pluralize (time, label) {
if (time === 1) {
return time + label
}
return time + label + 's'
} export function unescape (text) {
let res = text || '' ;[
['<p>', '\n'],
['&', '&'],
['&', '&'],
[''', '\''],
[''', '\''],
['/', '/'],
[''', '\''],
['/', '/'],
['<', '<'],
['>', '>'],
[' ', ' '],
['"', '"']
].forEach(pair => {
res = res.replace(new RegExp(pair[0], 'ig'), pair[1])
}) return res
}
5.创建 混合 mixins
src / mixins / index.js
export default {
methods: {
jump (to) {
if (this.$router) {
this.$router.push(to)
}
}
}
}
6.效果图
weexapp 开发流程(二)框架搭建的更多相关文章
- Angular企业级开发(5)-项目框架搭建
1.AngularJS Seed项目目录结构 AngularJS官方网站提供了一个angular-phonecat项目,另外一个就是Angular-Seed项目.所以大多数团队会基于Angular-S ...
- WebX框架学习笔记之二----框架搭建及请求的发起和处理
框架搭建 执行环境:windows.maven 执行步骤: 1.新建一个目录,例如:D:\workspace.注意在盘符目录下是无法执行成功的. 2.执行如下命令: mvn archetype:gen ...
- sonne_game网站开发02spring+mybatis框架搭建
从最开始搭框架谈起,而且,我不仅仅会讲how,还会努力讲why.因为对于web开发,由于有太多好的框架.组件.工具,使得how往往不是那么深刻,背后的why更值得专研.如果有初学者关注我这个系列,也一 ...
- c语言项目开发流程二部曲
一.在第一部曲中我们介绍了电子词典项目开发的前5步,下面继续我们的步伐. 6.函数接口设计,这一步不是一蹴而就的,在项目进行中得不断修改,下面是我电子词典项目接口. /**************函数 ...
- weexapp 开发流程(一)开发环境配置
1.创建项目 weexpack create weexapp 2.安装必要插件 npm i jwt-simple vue-resource vue-router vuex vuex-router-sy ...
- [libgdx游戏开发教程]使用Libgdx进行游戏开发(2)-游戏框架搭建
让我们抛开理论开始code吧. 入口类CanyonBunnyMain的代码: package com.packtpub.libgdx.canyonbunny; import com.badlogic. ...
- weexapp 开发流程(三)其他页面创建
1.首页 (1)轮播图 步骤一:创建 轮播图 组件(Slider.vue) src / assets / components / Slider.vue <!-- 轮播图 组件 --> & ...
- SOA架构商城二 框架搭建
1.创建父工程 创建Maven工程pingyougou-parent,选择packaging类型为pom ,在pom.xml文件中添加锁定版本信息dependencyManagement与plugin ...
- jeesite快速开发平台(二)----环境搭建
转自:https://blog.csdn.net/u011781521/article/details/54880465
随机推荐
- R语言基础-list matrix array
列表可以包含多种类型,如数字/字符/向量/data.frame/list # 创建含一个向量元素的list list1 = list(c(1,2,3)) # list2有三个元素 list2 = li ...
- C#显示相机实时画面
public partial class Form1 : Form { ICogAcqFifo mAcqFifo2;//定义一个相机对象 private ICogFrameGrabber mFrame ...
- jmeter压力测试入门
http://www.51testing.com/html/80/n-853680.html http://blog.csdn.net/vincy_zhao/article/details/70238 ...
- BRVAH(让RecyclerView变得更高效) (2)
本文来自网易云社区 作者:吴思博 1.2 宫格和列表的混排样式 关于 Grid 和List 的混排样式,Grid 样式是一行有多个,而 List样式是一行只有一个. 我们可以把 List 样式看成是G ...
- python基础-文件和目录
字符串小练习 >>> s="1a2a3a4a5a" >>> s1=s.split('a') >>> >>> ...
- ubuntu ssh连接服务器保持长时间不断
方法: ssh -o serveraliveinterval=60 username@ip
- 【java基础 8】垃圾收集算法及内存分配策略
本篇博客,主要介绍GC的收集算法以及根据算法要求所得的内存分配策略! 一.收集算法 收集算法,主要包括四种,分别是:Mark-Sweep(标记-清除).Copying(复制).Mark-Compact ...
- 关于安卓浏览器无法识别es6语法
这几天写代码,在highcharts的代码里用了一些es语法 在PC端及iphone上都能正常运行,在安卓上无法显示 一直不知道什么原因.后来一点点查看才发现是下面的两句es6代码 1: .map(i ...
- HackerRank# Stock Maximize
原题地址 不知道为什么要用动态规划做,明明是扫几遍就行了啊 HackerRank上的题目特别喜欢long long类型啊,不用就爆.. 代码: #include <cmath> #incl ...
- BZOJ 4033 [HAOI2015]树上染色 ——树形DP
可以去UOJ看出题人的题解. 这样的合并,每一个点对只在lca处被考虑到,复杂度$O(n^2)$ #include <map> #include <ctime> #includ ...