- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的 HTML 代码:
<form id="broadcastForm" onSubmit="return false;" enctype="multipart/form-data">
<div>
<label for="image">Select an Image to Broadcast (Optional) <span class="text-danger">[Make sure image size is less than 500Kb]</span></label>
<input type="file" accept="image/*" class="btn btn-primary" id="image" name="image[]" class="fileinput" style="margin-top: 10px;" />
<div class="preview_box">
<img id="preview_img" src=""/>
</div>
</div>
<textarea class="textarea form-control" name="message" id="message" placeholder="Enter Message To Broadcast.." style="width: 100%; height: 125px; font-size: 14px; line-height: 18px; border: 1px solid #dddddd; padding: 10px;"></textarea>
</form>
这是我的 JQuery 代码:
$("button#brodcastMessage").click(function()
{
var proceed = true, image = $("#image").val(), message = $("#message").val(), type = "", dataSend = "";
var formData = new FormData();
if(image == "" && message == "" || image == null && message == null)
{
proceed = false;
swal({
title: "Error Sending Email!",
text: "To send Email Broadcast to your subscribers you need to either select an image or enter the broadcast message. Both the fields are blank!",
icon: "error",
});
}
else if(image == "" || image == null && message != "")
{
proceed = true;
formData.append('message', message);
formData.append('image', "");
}
else if(message == "" || message == null && image != "")
{
proceed = true;
formData.append('image', $('#image')[0].files[0]);
}
else if(message != "" && image != "")
{
proceed = true;
formData.append('message', message);
formData.append('image', $('#image')[0].files[0]);
}
if(proceed)
{
$("button#brodcastMessage").addClass('disabled').attr('disabled', 'true').html("Sending Mail Please Wait...");
$.ajax({
url: '/ajax?id=broadcast',
type: 'POST',
data: formData,
cache: false,
contentType: false,
processData: false,
success:function(response)
{
resp = response.slice(-3); //read last three characters of a string
if(resp == "ack")
{
$("form#upload_form").trigger('reset');
$("#image").val("");
$('#preview_img').attr('src', '');
$("button#brodcastMessage").removeClass('disabled').html('Send <i class="fa fa-arrow-circle-right"></i>').removeAttr('disabled');
$("form#emailFormSend").trigger('reset');
swal({
title: "Message Sent!",
icon: "success",
});
}
else if(resp == "nak")
{
$("button#brodcastMessage").removeClass('disabled').html('Send <i class="fa fa-arrow-circle-right"></i>').removeAttr('disabled');
swal({
title: "Error Sending Email!",
text: "Please Try Again!",
icon: "error",
});
}
else
{
$("button#brodcastMessage").removeClass('disabled').html('Send <i class="fa fa-arrow-circle-right"></i>').removeAttr('disabled');
swal({
title: "Error Log!",
text: response,
icon: "error",
});
}
},
error:function(response)
{
$("button#brodcastMessage").removeClass('disabled').html('Send <i class="fa fa-arrow-circle-right"></i>').removeAttr('disabled');
swal({
title: "Network Error!",
text: "There was an Error Processing your request! Please try again after some time!",
icon: "error",
});
}
});
}
});
这是我的 PHP 代码:
if($_GET['id'] == "broadcast")
{
if($_POST['message'] == "" || $_POST['message'] == null && isset($_FILES) && !empty($_FILES))
{
//file variable is set
$counter = "file";
}
if(isset($_FILES) && empty($_FILES) && $_POST['message'] != "" || $_POST['message'] != null)
{
//message varibale is set
$counter = "message";
}
if(isset($_FILES) && !empty($_FILES) && $_POST['message'] != "" || $_POST['message'] != null)
{
//both are present
$counter = "both";
}
echo $counter;
exit();
}
您好,我正在尝试进行ajax文件上传。现在我正在创建一条广播消息,其中我提供了 2 个输入
1.) Select image &
2.) Enter message
现在可以有 4 个条件
1.) Either both of them are blank (i have handled this on client side)
2.) Either I only want to broadcast message but not image
3.) Either I want to broadcast image but not message
4.) Either I want to broadcast both image and message
所以我在 PHP 和 JQuery 端验证上设置了这个,问题是当有消息集和文件注释集时,php 脚本会给出图像的错误是一个 undefined variable 。
我的脚本正在做的是,即使文件没有上传,脚本也会回显文件
,如果我没有上传任何图像并且只设置了文本消息,那么它会回显两者
,过去 4 个小时以来我一直被困在这里。我不知道我的脚本是错误的还是逻辑失败的。谁能帮我解释一下这个逻辑?
最佳答案
试试这个。
<?php
if($_GET['id'] == "broadcast")
{
$has_message = (isset($_POST['message']) && (strlen(trim($_POST['message'] )) >0));
$has_file = (isset($_FILES['image']) && $_FILES['image']['error'] === UPLOAD_ERR_OK );
if( !$has_message && $has_file)
{
//file variable is set
$counter = "file";
}
else if( $has_message && !$has_file)
{
//message varibale is set
$counter = "message";
}
else if( $has_message && $has_file)
{
//both are present
$counter = "both";
}
else {
$counter = "neither";
}
echo $counter;
exit();
}
关于javascript - PHP 代码总是设置文件上传标志,即使没有上传任何内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46692072/
我有两个维度 DimFlag 和 DimPNL 以及一个事实表 FactAmount 。我正在寻找:当 pnl 是 stat(Is Stat=1) 时:sum (Actual x FlagId)对于
我试图弄清楚登录模块标志在 JAAS 中是如何工作的(使用 JBoss 5.1 EAP),我遇到了一个令人费解的情况,我希望有人能为我澄清一下。 对于背景,我的 login-config.xml 如下
关闭。这个问题是off-topic .它目前不接受答案。 想改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 关闭 9 年前。 Improve this
我正在通过 gradle 使用 doclet 运行 javadoc,当我运行 javadoc/doclet 任务时,我收到下一个错误: error - invalid flag: -doctitle
我尝试使用sqoop --where标志将特定的行从MySQL表导入到HDFS,但是结果不符合预期。 命令: sqoop import \ --connect "jdbc:mysql://XXXX
我有一个语言面板,其中有一个图像 (main-image),显示页面加载时的情况。我还有三个额外的图像,它们在页面加载时隐藏。 问题是当点击附加图像之一时如何切换主图像。我需要使用单击的 image
奇怪...在 StackOverflow 上有很多关于此 attr 的问题,但没有人回答我的以下问题: 我有一个span(仅作为示例),其中启用了ContentEditable。我只想保存更改的元素(
我正在使用 ChartJS 2.0 在 UI 上绘制图表。而且我能够呈现饼图。但我希望鼠标悬停时显示数据以及“%”符号。我如何追加 % 因此,如果在鼠标悬停时我得到 Rented: 93 我想看到 R
我使用的是 Servlet 3.0,我想用 HttpOnly 标志保护我的 cookie。我的 web.xml 是 true
我有一个简单的服务: public class TestService extends Service { final String LOG_TAG = "myLogs"; public void o
我正在尝试将 wget 与包含“#”符号的 url 一起使用。无论我做什么来逃避这个角色,它都不起作用。我用过\、' 和 "。但它们都不起作用。有人有什么建议吗? 谢谢! 最佳答案 如果您真的想让它有
我正在尝试创建一个数据库,但我不知道如何转义数据库名称中的 - 符号。 mysql> create database happy-face; 给我一个错误 mysql> create databa
我为我的计算机科学类(class)编写了一个程序,它读取一个文件并导入数据,然后只添加数字,但它似乎添加了一个额外的加号。 import java.io.*; //necessary for File
可能是个愚蠢的问题,但我怎样才能在与某些文本看到图像相同的行中获取图像(在本例中为标志)? 到目前为止我的 HTML 代码: FRA 最佳答案 试试这个: img { height:20px
我需要一些有关 clone() 系统调用的帮助。我试图将它与标志 CLONE_CHILD_CLEARTID 一起使用,但我看不到我指定为参数的字段值有任何变化。这是一个简单的代码: int the_c
查看 mySQL 转储时,我遇到了一些东西,想知道它们是什么。 我明白了: /*!50001 DROP TABLE IF EXISTS `xxx` */; flag 50001是什么意思,有什么意思的
是否可以传递任何 Java 编译器标志来告诉编译器不允许使用原始类型?也就是说,对于任何泛型类,让编译器强制使用参数化版本,否则抛出编译错误? 最佳答案 JDK7 (b38) 介绍 -Xlint:ra
[Flags] public enum MyEnum { None = 0, Setting1 = (1 GetAllEnums() where T : struct
我正在浏览 PackageManager API。我发现定义了以下常量: 1) GET_DISABLED_COMPONENTS 2) GET_DISABLED_UNTIL_USED_COMPONENT
我编写了一个 Go 程序来模拟按键操作。为此,我必须使用 cgo 和不同的 C 代码片段,具体取决于正在编译 Go 代码的操作系统。我编写的代码如下所示: package keyboard /* #i
我是一名优秀的程序员,十分优秀!