嵌入式预定系统 Booking-js
- 授权协议: MIT
- 开发语言: JavaScript
- 操作系统: 跨平台
- 软件首页: https://github.com/timekit-io/booking-js
软件介绍
Booking-js 是一个简单漂亮的嵌入式预定系统。它用 FullCalendar 来自定义主题。
示例代码:
{ // Required
email: '',
// Your Timekit user's email (used for auth)
apiToken: '',
// Your Timekit user's apiToken (as generated through the wizard)
calendar: '',
// Your Timekit calendar ID that bookings should end up in
// Optional
targetEl: '#bookingjs',
// Which element should we the library load into
name: '',
// Display name to show in the header and timezone helper
avatar: '',
// Provide an image URL for a circular image avatar
autoload: true,
// Auto initialization if config object is found on window var
includeStyles: true,
// Inject fullCalendar and library styles in <head>
showCredits: true,
// Display a "Powered by Timekit" attribution footer (thanks!)
// Internationalization
localization: {
showTimezoneHelper: true,
// Should the timezone difference helper (bottom) be shown?
timeDateFormat: '12h-mdy-sun'
// For EU-style formatting, use '24h-dmy-mon' (see below)
}
// Timekit JS SDK (see below)
timekitConfig: { ... },
// Timekit FindTime endpoint (see below)
timekitFindTime: { ... },
// Timekit CreateEvent endpoint (see below)
timekitCreateEvent: { ... },
// FullCalendar options (see below)
fullCalendar: { ... },
// Register callbacks on events
callbacks: {
findTimeStarted:
function(args) {},
findTimeSuccessful:
function(response) {},
findTimeFailed:
function(response) {},
createEventStarted:
function(args) {},
createEventSuccessful:
function(response) {},
createEventFailed:
function(response) {},
getUserTimezoneStarted:
function(args) {},
getUserTimezoneSuccesful: function(response) {},
getUserTimezoneFailed: function(response) {},
fullCalendarInitialized: function() {},
renderCompleted: function() {},
showBookingPage: function(event) {},
closeBookingPage: function() {},
submitBookingForm: function(values) {}
}
}Web开发敏捷之道
Sam Ruby、Dave Thomas、David Heineme Hansson / 慕尼黑Isar工作组、骆古道 / 机械工业出版社 / 2012-3-15 / 59.00元
本书第1版曾荣获Jolt大奖“最佳技术图书”奖。在前3版的内容架构基础上,第4版增加了关于Rails中新特性和最佳实践的内容。本书从逐步创建一个真正的应用程序开始,然后介绍Rails的内置功能。全书分为3部分,第一部分介绍Rails的安装、应用程序验证、Rails框架的体系结构,以及Ruby语言的知识;第二部分用迭代方式创建应用程序,然后依据敏捷开发模式搭建测试案例,最终用Capistrano完成......一起来看看 《Web开发敏捷之道》 这本书的介绍吧!
