代碼地址:https://github.com/tumobi/nideshop
git clone https://github.com/tumobi/nideshop
CREATE SCHEMA `nideshop` DEFAULT CHARACTER SET utf8mb4 ;
注意數(shù)據(jù)庫字符編碼為utf8mb4
const mysql = require('think-model-mysql');
module.exports = {
handle: mysql,
database: 'nideshop',
prefix: 'nideshop_',
encoding: 'utf8mb4',
host: '127.0.0.1',
port: '3306',
user: 'root',
password: '你的密碼',
dateStrings: true
};
// default config
module.exports = {
default_module: 'api',
weixin: {
appid: '', // 小程序 appid
secret: '', // 小程序密鑰
mch_id: '', // 商戶帳號ID
partner_key: '', // 微信支付密鑰
notify_url: '' // 微信異步通知,例:https://www.nideshop.com/api/pay/notify
}
};
npm install
npm start
注意:當(dāng)前版本功能還未完善,請謹(jǐn)慎使用。