我有以下HTML代码:
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<style>
.dp-highlight .ui-state-default {
background: #484;
color: #FFF;
}
</style>
<script type='text/javascript'>
var gigDates;
</script>
<script>
window.onload = getGigDates();
function getGigDates(){
google.script.run.withSuccessHandler(retDates).getDates(date);
}
function retDates(gigDatesTwo){
console.log("Returning the dates needed: " +gigDatesTwo)
gigDates = gigDatesTwo;
}
$(function() {
$( "#datepicker" ).datepicker({
onSelect: function(date) {updDate(date);},
selectWeek: true,
inline: true,
startDate: '01/01/2000',
firstDay: 1,
beforeShowDay : available,
});
});
function available(date) {
console.log("From the Spread sheet: " +gigDates);
var dmy = (date.getMonth()+1) + "/" + date.getDate() + "/" + date.getFullYear();
console.log(dmy+' : '+($.inArray(dmy, gigDates)));
if ($.inArray(dmy, gigDates) != -1) {
return [true, "","Available"];
} else {
return [false,"","unAvailable"];
}
}
function updDate(date){
google.script.run.withSuccessHandler(myReturnFunction).updDate(date);
}
function myReturnFunction(whatGotReturned){
document.getElementById("demo").innerHTML = whatGotReturned;
}
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker" onchange="updDate()"></p>
<p id="demo"></p>
<input type="button" value="Close" onclick="google.script.host.close()" />
</body>
函数getGigDates返回以下内容:
[ “2014年5月12日”, “2014年6月14日”, “2014年6月6日”, “2014年6月13日”, “2014年6月17日”,“2014年5月30日”, “2014年6月3日”, “2014年6月4日”, “2014年6月18日”, “2014年6月18日”, “2014年6月20日”, “2014年6月25日”, “2014年6月19日”, “2014年6月13日”, “2014年6月27日”, “2014年7月4日”, “2014年7月1日”, “2014年7月6日”,] < / p>
但当函数“available”将dmy与7月4日的gigDates进行比较时,它返回-1。
编辑:以下是一个条目的控制台输出的一部分:
来自电子表格:[“2014年5月12日”,“2014年6月14日”,“6/6/2014”,“2014年6月13日”,“2014年6月17日”,“ 2014" 年5月30日, “2014年6月3日”, “2014年6月4日”, “2014年6月18日”, “2014年6月18日”, “2014年6月20日”,“6 /二千〇一十四分之二十五“ , ”2014年6月19日“, ”2014年6月13日“, ”2014年6月27日“, ”2014年7月4日“, ”2014年7月1日“,”7/6 / 2014" ] 2014年6月14日:-1
我是否将dmy或gigDates变量格式化为错误?
洛伦
编辑Google脚本:
function getDates(){
var ss = SpreadsheetApp.openById("0AnDrS3YbyWoLdC15aktnMTluUkQ3dWhNTFlyQXBPOFE");
var list = ss.getSheetByName('Form Responses 1');
var values = list.getRange(1,5,ss.getLastRow(),5).getValues();
var gigDates;
gigDates= "[";
for (var i in values){
if (values[i][0]!=""){
if (values[i][0] != "Gig Date"){
var ssDate = Utilities.formatDate(values[i][0], "GMT", "M/d/yyyy");
gigDates = gigDates + '"'+ssDate+'"'+",";
}
}
}
gigDates = gigDates + "]";
Logger.log(gigDates);
return gigDates;
}
答案 0 :(得分:1)
您的代码应该返回Array对象而不是string。您的代码应如下所示:
function getDates(){
var ss = SpreadsheetApp.openById("0AnDrS3YbyWoLdC15aktnMTluUkQ3dWhNTFlyQXBPOFE");
var list = ss.getSheetByName('Form Responses 1');
var values = list.getRange(1,5,ss.getLastRow(),5).getValues();
var gigDates = [];
for (var i in values){
if (values[i][0]!=""){
if (values[i][0] != "Gig Date"){
var ssDate = Utilities.formatDate(values[i][0], "GMT", "M/d/yyyy");
gigDates.push(ssDate);
}
}
}
Logger.log(gigDates);
return gigDates;
}
另一个选项可能是使用正则表达式([0-9]{1,2}\/[0-9]{1,2}\/[0-9]{4}
)解析返回的字符串,因此您的availible
函数可能如下所示:
function available(date) {
console.log("From the Spread sheet: " +gigDates);
var dmy = (date.getMonth()+1) + "/" + date.getDate() + "/" + date.getFullYear();
console.log(dmy+' : '+($.inArray(dmy, gigDates.match(/[0-9]{1,2}\/[0-9]{1,2}\/[0-9]{4}/gmi))));
if ($.inArray(dmy, gigDates) != -1) {
return [true, "","Available"];
} else {
return [false,"","unAvailable"];
}
}
但是,我建议将getDates
作为更恰当的方式进行修复。