Table of Contents
添加新闻
回复讨论(解决方案)
Home Backend Development PHP Tutorial UEditor表单POST提交后无参数,代码检查N次了,大伙帮忙看下!

UEditor表单POST提交后无参数,代码检查N次了,大伙帮忙看下!

Jun 23, 2016 pm 01:25 PM

<?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>
Copy after login


其他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>
Copy after login
Copy after login
Copy after login

上一个之前项目里用过的代码,供参考

    <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>
Copy after login
Copy after login
Copy after login



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>
Copy after login
Copy after login
Copy after login



POST抓取编辑器内容是用editor_wrapper还是content?
我用你的代码,可以抓取POST数据了,但只能抓取默认输入,比如我重新在编辑器里写内容提交无内容。

抓的是UE.getEditor('id');里id对应的textarea

table标签必须放到form表单里面

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain the concept of late static binding in PHP. Explain the concept of late static binding in PHP. Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

How does session hijacking work and how can you mitigate it in PHP? How does session hijacking work and how can you mitigate it in PHP? Apr 06, 2025 am 12:02 AM

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

See all articles