UEditor表单POST提交后无参数,代码检查N次了,大伙帮忙看下!
<?phprequire_once("config.php");if(!empty($_POST['submit'])){ error_reporting(E_ERROR|E_WARNING); var_dump($_POST); $path1 = $_POST["newsname"]; $path2 = $_POST["datenow"]; $path3 = htmlspecialchars(stripslashes($_POST["editor"])); //echo "<div class='content'>".htmlspecialchars_decode($path3)."</div>";//输出页面必须用htmlspecialchars_decode}mysql_close($link)?><!doctype html><html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"/><script type="text/javascript" charset="utf-8" src="UEditor/ueditor.config.js"></script><script type="text/javascript" charset="utf-8" src="UEditor/ueditor.all.js"></script><script type="text/javascript" charset="utf-8" src="UEditor/lang/zh-cn/zh-cn.js"></script><title>新建新闻</title></head><body><table> <form id="form1" name="form1" method="post" action="insetr.php"> <caption><h2 id="添加新闻">添加新闻</h2></caption> <tr> <td>新闻标题:</td> <td><input type="text1" name="newsname" id="newsname" value="百度编辑器使用方法!"></td> </tr> <tr> <td>发布时间:</td> <td><input type="text2" name="datenow" id="datenow" value="<?php echo(date("Y-m-d H:i:s"));?>"></td> </tr> <tr> <td>新闻内容:</td> <td><script type="text/plain" id="editor" name="editor" style="width:1024px;height:500px"> <p>欢迎使用UEditor!</p> </script></td> </tr> <tr> <td> </td> <td><input type="submit" name="submit" value="提交"></td> </tr> </form></table><script type="text/javascript" charset="utf-8"> window.UEDITOR_CONFIG.catcherPath=''; window.UEDITOR_CONFIG.initialFrameWidth = 'auto'; //初始化编辑器宽度,默认1000 window.UEDITOR_CONFIG.initialFrameHeight= 520; //初始化编辑器高度,默认320 var editor = new UE.ui.Editor(); editor.render("editor");</script><style type="text/css">input { width: 100%; height: 28px;}</style></body></html>
其他POST参数正常,唯独这个UEditor编辑器获取不到,而且我也参照了官方的改,也没发现问题,纠结了。
回复讨论(解决方案)
上一个之前项目里用过的代码,供参考
<div class="span9" style="margin-left: 18px;"> <div id="editor_wrapper"> <?php echo form_open('zone/push_tweet'); ?> <!-- <script type="text/plain" id="txtEditor">${my_tweet}</script> --> <textarea name="content" id="my_tweet">Say Something ...</textarea> <br /> <div style="margin-bottom: 10px;"> <input type="submit" name="submit" class="pull-right btn btn-info" value="发布"> <div style="clear:both;"></div> </div> </form> </div> </div><script type="text/javascript" src="<?php echo base_url('ueditor/ueditor.config.js'); ?>"></script><script type="text/javascript" src="<?php echo base_url('ueditor/ueditor.all.js'); ?>"></script><script type="text/javascript"> UE.getEditor('my_tweet',{ toolbars:[["link","emotion"]], autoClearinitialContent:true, //编辑器获取焦点时时自动清空初始化时的内容 wordCount:true, //字数统计 maximumWords:140, wordCountMsg : '已输入 {#count} 个字符,您还可以输入{#leave} 个', wordOverFlowMsg : '<span style="color:red;">你输入的字符个数已经超出最大允许值,服务器可能会拒绝保存!</span>', initialFrameHeight:70 //高度 }); var my_editor = UE.getEditor('my_tweet'); //返回刚创建的实例 </script>
上一个之前项目里用过的代码,供参考
<div class="span9" style="margin-left: 18px;"> <div id="editor_wrapper"> <?php echo form_open('zone/push_tweet'); ?> <!-- <script type="text/plain" id="txtEditor">${my_tweet}</script> --> <textarea name="content" id="my_tweet">Say Something ...</textarea> <br /> <div style="margin-bottom: 10px;"> <input type="submit" name="submit" class="pull-right btn btn-info" value="发布"> <div style="clear:both;"></div> </div> </form> </div> </div><script type="text/javascript" src="<?php echo base_url('ueditor/ueditor.config.js'); ?>"></script><script type="text/javascript" src="<?php echo base_url('ueditor/ueditor.all.js'); ?>"></script><script type="text/javascript"> UE.getEditor('my_tweet',{ toolbars:[["link","emotion"]], autoClearinitialContent:true, //编辑器获取焦点时时自动清空初始化时的内容 wordCount:true, //字数统计 maximumWords:140, wordCountMsg : '已输入 {#count} 个字符,您还可以输入{#leave} 个', wordOverFlowMsg : '<span style="color:red;">你输入的字符个数已经超出最大允许值,服务器可能会拒绝保存!</span>', initialFrameHeight:70 //高度 }); var my_editor = UE.getEditor('my_tweet'); //返回刚创建的实例 </script>
POST抓取编辑器内容是用editor_wrapper还是content?
我用你的代码,可以抓取POST数据了,但只能抓取默认输入,比如我重新在编辑器里写内容提交无内容。
上一个之前项目里用过的代码,供参考
<div class="span9" style="margin-left: 18px;"> <div id="editor_wrapper"> <?php echo form_open('zone/push_tweet'); ?> <!-- <script type="text/plain" id="txtEditor">${my_tweet}</script> --> <textarea name="content" id="my_tweet">Say Something ...</textarea> <br /> <div style="margin-bottom: 10px;"> <input type="submit" name="submit" class="pull-right btn btn-info" value="发布"> <div style="clear:both;"></div> </div> </form> </div> </div><script type="text/javascript" src="<?php echo base_url('ueditor/ueditor.config.js'); ?>"></script><script type="text/javascript" src="<?php echo base_url('ueditor/ueditor.all.js'); ?>"></script><script type="text/javascript"> UE.getEditor('my_tweet',{ toolbars:[["link","emotion"]], autoClearinitialContent:true, //编辑器获取焦点时时自动清空初始化时的内容 wordCount:true, //字数统计 maximumWords:140, wordCountMsg : '已输入 {#count} 个字符,您还可以输入{#leave} 个', wordOverFlowMsg : '<span style="color:red;">你输入的字符个数已经超出最大允许值,服务器可能会拒绝保存!</span>', initialFrameHeight:70 //高度 }); var my_editor = UE.getEditor('my_tweet'); //返回刚创建的实例 </script>
POST抓取编辑器内容是用editor_wrapper还是content?
我用你的代码,可以抓取POST数据了,但只能抓取默认输入,比如我重新在编辑器里写内容提交无内容。
抓的是UE.getEditor('id');里id对应的textarea
table标签必须放到form表单里面

핫 AI 도구

Undresser.AI Undress
사실적인 누드 사진을 만들기 위한 AI 기반 앱

AI Clothes Remover
사진에서 옷을 제거하는 온라인 AI 도구입니다.

Undress AI Tool
무료로 이미지를 벗다

Clothoff.io
AI 옷 제거제

AI Hentai Generator
AI Hentai를 무료로 생성하십시오.

인기 기사

뜨거운 도구

메모장++7.3.1
사용하기 쉬운 무료 코드 편집기

SublimeText3 중국어 버전
중국어 버전, 사용하기 매우 쉽습니다.

스튜디오 13.0.1 보내기
강력한 PHP 통합 개발 환경

드림위버 CS6
시각적 웹 개발 도구

SublimeText3 Mac 버전
신 수준의 코드 편집 소프트웨어(SublimeText3)

뜨거운 주제











Laravel은 직관적 인 플래시 방법을 사용하여 임시 세션 데이터 처리를 단순화합니다. 응용 프로그램에 간단한 메시지, 경고 또는 알림을 표시하는 데 적합합니다. 데이터는 기본적으로 후속 요청에만 지속됩니다. $ 요청-

PHP 클라이언트 URL (CURL) 확장자는 개발자를위한 강력한 도구이며 원격 서버 및 REST API와의 원활한 상호 작용을 가능하게합니다. PHP CURL은 존경받는 다중 프로모토콜 파일 전송 라이브러리 인 Libcurl을 활용하여 효율적인 execu를 용이하게합니다.

Laravel은 간결한 HTTP 응답 시뮬레이션 구문을 제공하여 HTTP 상호 작용 테스트를 단순화합니다. 이 접근법은 테스트 시뮬레이션을보다 직관적으로 만들면서 코드 중복성을 크게 줄입니다. 기본 구현은 다양한 응답 유형 단축키를 제공합니다. Illuminate \ support \ Facades \ http를 사용하십시오. http :: 가짜 ([ 'google.com'=> 'Hello World', 'github.com'=> [ 'foo'=> 'bar'], 'forge.laravel.com'=>

Alipay PHP ...

고객의 가장 긴급한 문제에 실시간 인스턴트 솔루션을 제공하고 싶습니까? 라이브 채팅을 통해 고객과 실시간 대화를 나누고 문제를 즉시 해결할 수 있습니다. 그것은 당신이 당신의 관습에 더 빠른 서비스를 제공 할 수 있도록합니다.

기사는 PHP 5.3에 도입 된 PHP의 LSB (Late STATIC BING)에 대해 논의하여 정적 방법의 런타임 해상도가보다 유연한 상속을 요구할 수있게한다. LSB의 실제 응용 프로그램 및 잠재적 성능

이 기사에서는 프레임 워크에 사용자 정의 기능 추가, 아키텍처 이해, 확장 지점 식별 및 통합 및 디버깅을위한 모범 사례에 중점을 둡니다.

기사는 입력 유효성 검사, 인증 및 정기 업데이트를 포함한 취약점을 방지하기 위해 프레임 워크의 필수 보안 기능을 논의합니다.
