项目总结

音乐功能参考网站
1.授权微信登录    http://www.bcty365.com/content-146-4792-1.html
2.减少发型包体积   http://ask.dcloud.net.cn/article/491
3.定义变量名称    https://unbug.github.io/codelf/#%E5%88%86%E9%A1%B5
4.提取音乐mp3路径    https://jingyan.baidu.com/article/456c463b2ba5650a59314477.html
5.百度 开放平台语音     http://ai.baidu.com/                http://ai.baidu.com/tech/speech/asr
6.华为手机 连接电脑     http://xinzhi.wenda.so.com/a/1521979472619046
7.webpack   打包         https://www.webpackjs.com/
音乐申请IOS开发证书
项目总结_第1张图片
 

格式化时间

1.格式化时间
引入util.js
页面:{{item.CreateTime | formatDate}}
写在vue方法中
filters: {
                formatDate: function(val) {
                    if(val) {
                        try {
                            //                            return new Date(val).format("yyyy年MM月dd日");
                            return new Date(val).Format("yyyy-MM-dd");
                        } catch(e) {
                            console.log(e);
                        }
                    }
                    return "";
                },
                }
2.修改另一个表 中的字段
  --修改歌手播放次数
update Member set PlayCount = (select sum(PlayCount) from Song where Song.MemberID = Member.ID)
3.线上找不到字段,方法,代码生成器重新生成
4.HBuilder 搜索行号  
     ctrl+g

你可能感兴趣的:(项目总结)