


How to use jquery ajax to submit data in thinkcmfx. After trying to do it myself, I still can't submit it. Please help!
<code> <script src="__TMPL__Public/js/jquery-1.10.2.min.js" type="text/javascript"></script> <div class="form-group"> <label for="exampleInputEmail1">*姓名</label> <input type="text" class="form-control" placeholder="" id="name" value="{$data}"> </div> <div class="form-group"> <label for="exampleInputPassword1">*电话</label> <input type="password" class="form-control" id="exampleInputPassword1" placeholder="" id="tel"> </div> <label for="exampleInputPassword1">*给我们留言</label> <textarea class="form-control" rows="3" id="msg"></textarea> <button type="button" class="btn btn-default js-ajax-submit" id="subMessage" data-wait="1500">提交留言</button> <script type="text/javascript"> $(function(){ $("#subMessage").click(function(){ $.ajax({ url: "__URL__/postMessage", type: "POST", data:{name:'name',tel:'tel',msg:'message'},// //dataType: "json", error: function(){ alert('Error loading XML document'); }, success: function(data,status){//如果调用php成功 alert(data); //document.write(data); /*if(data!=0) { jQuery.alerts.alert("提交成功!", "提示",function(){ window.parent.document.getElementById("layui-layer1").style.display="none"; window.parent.document.getElementById("layui-layer-shade1").style.display="none"; window.parent.location.href=window.parent.location.href; }); }*/ //alert(data); } }); //ajax }); }); </script> </code>
namespace PortalController;
use CommonControllerHomebaseController;
/**
Homepage
*/
class IndexController extends HomebaseController {
<code>function postMessage(){ //$this->ajaxReturn($_POST,'添加信息成功',1); //$this->success("注册成功!",__ROOT__."/"); $data=$_POST["name"]; //echo $data; return $data;</code>
// $this->assign("name",$data);
// $this->display(":index");
<code>} } </code>
回复内容:
<code> <script src="__TMPL__Public/js/jquery-1.10.2.min.js" type="text/javascript"></script> <div class="form-group"> <label for="exampleInputEmail1">*姓名</label> <input type="text" class="form-control" placeholder="" id="name" value="{$data}"> </div> <div class="form-group"> <label for="exampleInputPassword1">*电话</label> <input type="password" class="form-control" id="exampleInputPassword1" placeholder="" id="tel"> </div> <label for="exampleInputPassword1">*给我们留言</label> <textarea class="form-control" rows="3" id="msg"></textarea> <button type="button" class="btn btn-default js-ajax-submit" id="subMessage" data-wait="1500">提交留言</button> <script type="text/javascript"> $(function(){ $("#subMessage").click(function(){ $.ajax({ url: "__URL__/postMessage", type: "POST", data:{name:'name',tel:'tel',msg:'message'},// //dataType: "json", error: function(){ alert('Error loading XML document'); }, success: function(data,status){//如果调用php成功 alert(data); //document.write(data); /*if(data!=0) { jQuery.alerts.alert("提交成功!", "提示",function(){ window.parent.document.getElementById("layui-layer1").style.display="none"; window.parent.document.getElementById("layui-layer-shade1").style.display="none"; window.parent.location.href=window.parent.location.href; }); }*/ //alert(data); } }); //ajax }); }); </script> </code>
namespace PortalController;
use CommonControllerHomebaseController;
/**
Homepage
*/
class IndexController extends HomebaseController {
<code>function postMessage(){ //$this->ajaxReturn($_POST,'添加信息成功',1); //$this->success("注册成功!",__ROOT__."/"); $data=$_POST["name"]; //echo $data; return $data;</code>
// $this->assign("name",$data);
// $this->display(":index");
<code>} } </code>
你ajax里的参数url写的不对吧,你那个__url__应该是一个变量,应该写成url: __URL__+"/postMessage", dataType参数不能注释
$.ajax({
<code>url: __URL__+"/postMessage", type: "POST", data:{name:'name',tel:'tel',msg:'message'},// dataType: "json", error: function(){ alert('Error loading XML document'); }, success: function(data,status){//如果调用php成功 alert(data); }</code>
});

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

Validator can be created by adding the following two lines in the controller.
