- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
My small form-handling script似乎以某种方式破坏了 google.run.script 。我这样调用它:
google.script.run.withSuccessHandler(worked).verwerkForm(this.parentNode);
运行脚本时出现以下错误:
Uncaught InvalidArgumentError: Failed due to illegal value in property: 0
以前的版本运行良好,我不知道我做了什么破坏了代码。说到错误消息或文档时,Google 应用程序脚本非常烦人。如果有人可以提供帮助,那就太好了!
作为引用,我还在这里提交了一个问题:google script issue report
我正在使用的索引文件:
> <?!= include('Stylesheet'); ?> <div class="container"> <h1
> id="PageHeader">World Basketball Coaches Community -
> Inschrijving/Application</h1> <img
> src="https://drive.google.com/a/apps.howest.be/uc?export=view&id=0B1m3_53fwZc8cmdKYjJvakk3WDA"/>
> <p id="required">* required</p> <form id="form">
> <div class="special">
> <p>Aanhef <span class="required">*</span></p>
> <label><input type="radio" name="voorvoegsel" value="Mr" checked />Mr</label>
> <label><input type="radio" name="voorvoegsel" value="Mrs"/>Mrs</label>
> <label><input type="radio" name="voorvoegsel" value="Miss"/>Miss</label>
> <span></span>
> </div>
> <div>
> <label for="voornaam">Voornaam /Prénom /First name <span class="required">*</span></label>
> <input type="text" name="voornaam" id="voornaam" placeholder="Voornaam"/>
> <span class="fout"></span>
> </div>
> <div>
> <label for="naam">Naam /Nom /Name <span class="required">*</span></label>
> <input type="text" name="naam" id="naam" placeholder="Naam"/>
> <span class="fout"></span>
> </div>
> <div>
> <label for="geboortedatum">Geboortedatum/ Date de naissance/ Date of birth <span class="required">*</span></label>
> <input type="date" name="geboortedatum" id="geboortedatum"/>
> <span class="fout"></span>
> </div>
> <div>
> <label for="nationaliteit">Nationaliteit / Nationalité / Nationaliteit <span class="required">*</span></label>
> <input type="text" name="nationaliteit" id="nationaliteit" placeholder="Nationaliteit"/>
> <span class="fout"></span>
> </div>
> <div>
> <label for="stad">Stad / Ville / City <span class="required">*</span></label>
> <input type="text" name="stad" id="stad" placeholder="Stad"/>
> <span class="fout"></span>
> </div>
> <div>
> <label for="land">Land / Pays / Country <span class="required">*</span></label>
> <input type="text" name="land" id="land" placeholder="Land"/>
> <span class="fout"></span>
> </div>
> <div>
> <label for="opleiding">Opleiding/ Education <span class="required">*</span></label>
> <select name="opleiding" id="opleiding" >
> <option value=" "></option>
> <option value="secondary school">Secondary school</option>
> <option value="high school">High school </option>
> <option value="bachelor">Bachelor</option>
> <option value="master">Master</option>
> <option value="university">University</option>
> </select>
> <span class="fout"></span>
> </div>
> <div>
> <label for="gsm">Gsm <span class="required">*</span></label>
> <input type="text" name="gsm" id="gsm" placeholder="+32 000 00 00 00"/>
> <span class="fout"></span>
> </div>
> <div>
> <label for="email">E-mail <span class="required">*</span></label>
> <input type="email" name="email" id="email" placeholder="someone@example.com"/>
> <span class="fout"></span>
> </div>
> <div>
> <label for="passport">Upload passport or ID copy (PDF or JPEG) <span class="required">*</span></label>
> <input type="file" name="passport" accept="image/jpeg,application/pdf" id="passport">
> <span class="fout"></span>
> </div>
> <div>
> <label for="color_passport">Upload color passport size photo (JPEG)<span class="required">*</span></label>
> <input type="file" name="pic" accept="image/jpeg" id="color_passport">
> <span class="fout"></span>
> </div>
> <div class="permission">
> <label for="akkoord">
> Ik geef mijn akkoord om deze gegevens aan FIBA over te maken in het kader van de "World Basketball Coaches Community".
> Je donne mon accord pour le transfert de mes données à la FIBA dans le cadre du projet "World Basketball Coaches Community"
> <span class="required">*</span>
> </label>
> <section id="checkPermission"><input type="checkbox" value="ja" id="akkoord"/> Ik ben akkoord</section>
> <span class="fout"></span>
> </div>
> <div>
> <label></label>
> <input type="button" value="Submit" onclick="submit()"/>
> </div> </form> </div> <div id="result" class='hide'>
> </div> <?!= include('testJavascript'); ?>
我正在使用的 TestJavascript:
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script>
function submit() {
google.script.run.withSuccessHandler(worked).verwerkForm(this.parentNode);
}
function worked() {
$(".container").remove();
$("#result").html('<h1>Dank je uw registratie is een succes!</h1>').removeClass('hide');
}
</script>
和CSS:
<style>
body {
font-family: Verdana,Arial,sans-serif;
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0.08, #0D2C91),
color-stop(0.76, #0788B3)
);
background-image: -o-linear-gradient(bottom, #0D2C91 8%, #0788B3 76%);
background-image: -moz-linear-gradient(bottom, #0D2C91 8%, #0788B3 76%);
background-image: -webkit-linear-gradient(bottom, #0D2C91 8%, #0788B3 76%);
background-image: -ms-linear-gradient(bottom, #0D2C91 8%, #0788B3 76%);
background-image: linear-gradient(to bottom, #0D2C91 8%, #0788B3 76%);
}
h1#PageHeader {
margin-bottom:10px;
}
.container {
margin: 0 auto;
width: 80%;
border-left: 1px solid blue;
border-right: 1px solid blue;
background: white;
padding: 10px 10px;
text-align:center;
}
.container form{
display:inline-block;
}
.hide{
display: none;
}
h1 {
margin: 0 auto;
display: block;
}
img {
width: 20%;
margin: 0 auto;
display: block;
}
.required {
color: #ff4444;
font-weight: 400;
}
span.fout {
display:block;
color : #ff4444;
margin-left: 36%;
}
input.fout {
color : #ff4444;
border: 1px solid red !important;
}
form {
width:80%;
text-align:left;
}
form div {
margin: 10px 0;
display: block;
}
form div label {
box-sizing: border-box;
display: inline-block;
padding: 5px;
width: 35%;
font-weight: 800;
font-family: Calibri;
}
input, select {
display: inline-block;
width: 50%;
}
input[type="text"], input[type="date"], input[type="email"], #opleiding {
padding: 4px;
font-size: 14px;
line-height: 1.42857143;
color: #555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
}
#opleiding {
width: 50.8%;
}
input[type="text"], input[type="date"], input[type="email"]{
height: 20px;
}
select{
height:29px;
}
.special p {
display: inline-block;
padding: 5px;
width: 32%;
font-weight: 800;
}
.special label {
width: 10%;
font-weight: 400;
display: inline-block;
}
#checkPermission {
font-family: Calibri;
font-weight:normal;
font-size: 16px;
display: inline-block;
}
.permission label {
}
input[type="checkbox"]{
width: 20px;
}
input:focus {
border :1px solid blue;
}
input[type="button"] {
color: #fff;
background-color: #428bca;
border-color: #357ebd;
display: inline-block;
padding: 6px 12px;
margin-bottom: 0;
font-size: 14px;
font-weight: 400;
line-height: 1.42857143;
text-align: center;
white-space: nowrap;
vertical-align: middle;
cursor: pointer;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
border: 1px solid transparent;
border-radius: 4px;
}
#required {
color: #ff4444;
}
</style>
VerwerkForm 函数:
function verwerkForm(e){
//check of alle input correct is
var statusObject = checkInput(e);
if(!statusObject.inOrde){
Logger.log("serversidecheck mislukt");
return false;
// throw Error("De input is niet correct. Volgende fouten werden gevonden: " + statusObject.foutboodschappen);
}
//sla de files in variabelen op en stel direct ook hun naam correct in
var fileBlobP = doeSetName(e, e.passport, "_passport");
var fileBlobPic = doeSetName(e, e.pic, "_passport_in_color");
//creating files
var docPass = DocsList.getFolderById(docP).createFile(fileBlobP);
var docColorPass = DocsList.getFolderById(docPic).createFile(fileBlobPic);
//maak gegevens om toe te voegen klaar, open dan de spreadsheet en voeg de rij met gegevens toe
var rijGegevens = [e.voorvoegsel, e.voornaam, e.naam, e.geboorteDatum, e.nationaliteit, e.stad, e.land, e.opleiding, e.gsm, e.email, docPass.getUrl(), docColorPass.getUrl(), new Date()];
SpreadsheetApp.openById(idSpreadsheet).getActiveSheet().appendRow(rijGegevens);
}
解决方案错误原来是因为我忘记在我的流程表单方法中包含成功案例的返回语句。最后一个简单的“return ok”就足以缓解这个问题。
最佳答案
GAS 无法传递 DIV,您需要以 form 形式发送,使用 $( "#form")[0]
或重组您的 HTML按钮的父级是表单,它上面可以有表格,但不能有 DIV。
关于google-apps-script - google.script.run 不工作 : Uncaught InvalidArgumentError: Failed due to illegal value in property: 0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27680509/
您好,下面是我在 AWS 中创建启用了弹性 IP 的实例的模板。但是我不确定我哪里出错了。我已经通过在线 json 验证器验证了 json,仍然面临问题请帮忙 { "AWSTemplateForm
标题有点乱,但已经说明了一切。我想在一个属性的属性上有一个属性观察器: class A { var b: B init() { b = B() } fu
假设我的一个 Controller 中有这样的方法: [Route("api/Products")] public IQueryable GetProducts() { return db.P
这有效: // @flow import React, {Component} from 'react'; type Props = {}; class Delete extends Componen
我有一个 ViewModelBase 类,我在其中为 INotifyPropertyChanged 接口(interface)定义了 RaisePropertyChanged 方法。大多数 MVVM
我创建了类: class StorageBase { public Queue Slices {get;set;} } 和 wpf 自定义控件,它具有 StorageBase 类型的依赖属性
我的 java 应用程序问题是 log4j2 系统日志不是写在 'local1.log' 中而是'消息'。我的/etc/rsyslog.conf 在/etc/rsyslog.conf 中配置为 'lo
为什么需要在对象中使用 this.property = property ?它是用来定义对象的“外部世界”的属性吗? function Person(property) { this.property
摘要: 这个问题是关于属性的继承与从彼此继承属性的类的内部和外部的不同读/写访问相结合。 详细信息: 我有一个类 A 和另一个继承自 A 的类 B。 A 中声明了属性someProperty。我希望该
我正在开发 ASP.NET MVC 应用,设计域模型,使用(测试)新的 EF Code First 功能。 我有一个可能有也可能没有截止日期的事件实体,处理它的最佳方法是什么? 1 个属性: publ
我在配置项目时经常使用它们,但大多数情况下都是按照指示添加 fragment 。我完全不知道哪个文件到底是做什么的。谁能清楚地说明每个文件的用途。 到目前为止我认为 local.properties
在运行 python 文件以使用 rasa nlu 训练文件时,我在命令提示符下收到此错误 我目前正在使用 Windows 10 rasa_core==0.8.2 rasa_nlu==0.11.4 p
我在这方面遇到了一些麻烦,尽管我已经搜索了答案,但还是找不到。 为了使用 AsyncAppender,我看到了很多不同的 log4j 配置,无论如何,它们都与 .properties 配置文件无关。
我正在编写一个 Python 类,并使用 @property 装饰器为该类创建属性。 我在文档中没有找到太多关于这个装饰器的信息,但是从我可以从 Stack Overflow 和我的 Python l
在 gradle 任务中,我可以创建这样的路径: System.env.FOLDER_PATH + '/subFolder' 但我想在我的 gradle.properties 中设置它,所以它会像 s
如何在属性文件的 log4j2 中创建键值对? 我知道在 log4j 版本 1 中它是这样完成的: log4j.appender.x.additionalFields={'key': 'value'}
我想通了 struct PropertyTest { @property int x() { return val; } @property void x( int newVal )
我有 REST (Jersey) webservice,它利用了一些编码/解码到/来自 XML 的数据对象。数据对象位于 webservice war 所依赖的单独项目/jar 中。 我使用 MOXy
我正在创建一个 LinkedList 类: function LinkedList(){ ... 有什么区别: this.addNode = function(data){
关于语义的快速问题:) 如果我正在编写一个协议(protocol),这是首选: // (a) @protocol MyProtocol @property (nonatomic, copy) NSSe
我是一名优秀的程序员,十分优秀!