`PHP`文件中设置
~~~
//分享设置
$shareCon = array(
'title' => '分享标题',
'desc' => '分享描述',
'imgUrl' => __DIR__ . '/../../img/share_img.jpg',
);
$signPackage = $_W['account']['jssdkconfig'];
~~~
前端或模版文件中加入
~~~
<script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
~~~
同时在前端中加入对应的`javascript`代码块
~~~
<script>
wx.config({
debug: false,
appId: '{$signPackage["appId"]}',
timestamp: '{$signPackage["timestamp"]}',
nonceStr: '{$signPackage["nonceStr"]}',
signature: '{$signPackage["signature"]}',
jsApiList: [
'checkJsApi',
'onMenuShareTimeline',
'onMenuShareAppMessage',
'onMenuShareQQ',
'onMenuShareWeibo',
'onMenuShareQZone'
]
});
wx.ready(function(){
// 分享朋友圈
wx.onMenuShareTimeline({
title:'{$shareCon["title"]}',
link:window.location.href,
imgUrl:'{php echo tomedia($shareCon["imgUrl"]);}',
success:function(){
//发送成功的方法
// alert('已分享');
},
cancel:function(){
//发送取消的方法
// alert('已取消');
}
});
// 分享给朋友
wx.onMenuShareAppMessage({
title:'{$shareCon["title"]}',
desc:'{$shareCon["desc"]}',
link:window.location.href,
imgUrl:'{php echo tomedia($shareCon["imgUrl"]);}',
success:function(){
//发送成功的方法
// alert('已分享');
},
cancel:function(){
//发送取消的方法
// alert('已取消');
}
});
})
</script>
~~~
- 微擎框架
- 目录结构
- 配置选项
- 数据库配置($config[db])
- 系统COOKIE配置项($config[cookie])
- 系统设置($config[setting])
- 预定义常量
- 全局变量
- 全局配置
- 系统配置
- 公众号相关
- Web 端可见
- App 端可见
- 网页授权
- URL 路由
- url生成助手
- createMobileUrl
- createWebUrl
- 文件加载器
- func(加载公共函数)
- class(加载公共类)
- model(加载系统model函数)
- web(加载web端公共函数)
- app(加载app端公共函数)
- library(库文件加载)
- object(实例化加载)
- singleton(单例加载)
- 缓存机制
- cache_write
- cache_load
- cache_delete
- cache_clean
- cache_system_key
- 数据库
- SQL注入安全
- 连接其它数据库
- 函数列表
- pdo_get
- pdo_getcolumn
- pdo_getall
- pdo_getslice
- pdo_fetch
- pdo_fetchcolumn
- pdo_fetchall
- pdo_insert
- pdo_update
- pdo_delete
- pdo_query
- pdo_run
- pdo_fieldexists
- pdo_indexexists
- pdo_tableexists
- pdo_fieldmatch
- pdo_debug
- 链式查询
- from
- select
- where
- whereor
- having
- groupby
- orderby
- leftjoin
- innerjoin
- on
- limit
- page
- get
- getall
- getcolumn
- count
- exists
- getLastQueryTotal
- getLastQuery
- 错误处理
- 日志记录
- 模板引擎
- 模板标签
- 输出变量
- 判断语句
- 循环语句
- php语句
- 引用模板
- 创建URL
- 转义附件URL
- 输出花括号
- 数据调用
- 调用微站导航
- 调用幻灯片
- 调用文章列表
- 调用分类列表
- 调用快捷菜单
- 常用变量
- 附录
- 数据库字典
- 自定义分享