Home >Backend Development >PHP Tutorial > 一个post的有关问题

一个post的有关问题

WBOY
WBOYOriginal
2016-06-13 12:58:52867browse

请教大家一个post的问题
    环境是ThinkPHP3.1。我现在用jquery去post一个.php文件,之前都是$.post('__APP__/Main/doWriteText',{"AddText":AddText},function(data){...}这样去post(模板为Main.html,然后这个类库是/lib/Action/MainAction.class.php),但后来我引用了一个类库,放在了lib/ORG下,这个类库我要去post其中一个函数时,我的url该怎么写?就是上边('__APP__/Main/doWriteText')这段。非常感谢!
------解决方案--------------------
post 的接收者一定是controller,你可以建个controller,然后在这个controller里调用你处理的函数/方法
------解决方案--------------------
ThinkPHP 的 url 格式
__APP__/module/action/name/value/...

所以 Main/doWriteText 是调用 MainAction::doWriteText 方法
至于这个方法中做什么和怎么做,就不受 ThinkPHP 的约束了

虽然同一的处理了传入的参数,但 $_POST 应该还是保留的。当然这一点需要证实一下
如果不存在,则需要恢复他,不然代码修改量太大不可取

$_POST 是超全局变量,只要存在,就可以直接使用,而不需要额外声明

Statement:
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