Home >Backend Development >PHP Tutorial >ajax从传值到php类的路径怎样写?

ajax从传值到php类的路径怎样写?

WBOY
WBOYOriginal
2016-06-23 13:27:151135browse

一个php类,$tool = new tool();
一个页面index.html
其中用ajax将数据传输到php类的find方法
如何写路径呢?
ajax可以这样应用么?


回复讨论(解决方案)

你的 php页面在哪就传到哪

你的 php页面在哪就传到哪


-----------------------------------------------------------------
我需要传到类中的方法,这个路径怎样写呢,php文件的路径我肯定知道了,或者在类中的方法怎样接受到ajax传送的数据

所有的请求(当然也包括ajax)只能到页面
页面根据传入的参数完成相应的动作

所有的请求(当然也包括ajax)只能到页面
页面根据传入的参数完成相应的动作


那就只能在初始方法中调用方法,返回数据了么

$o = new 类;
$o->finf();

这样不就可以了?

ajax 与链接和表单提交的处理方式是一样的

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