Home  >  Article  >  Backend Development  >  $.ajax+php practical tutorial to automatically load more articles when you pull down the principle explanation

$.ajax+php practical tutorial to automatically load more articles when you pull down the principle explanation

jacklove
jackloveOriginal
2018-06-11 18:02:313663browse

1. Concerned about the style of the article

It has been almost three years since the website Yiling was established. In the past three years, it has not made much profit. Yiling insists on updating articles from time to time, and is constantly adjusting the style of articles. I don’t know what style of articles the readers like, and there has been no feedback from the readers...

Today, Yi Ling will once again change to a new style - try to adopt Write some tutorial articles in the style of starting from the shallower to the deeper, from principles to simple cases to practical procedures. All readers are welcome to put forward their valuable opinions. As for the change in the style of the article, it is undoubtedly because Yi Ling wants to make it more straightforward and clear for readers to understand what the article is about, what its purpose is, and what readers can learn. (If the reader feels that he has learned something after reading the article, he can pick up his mobile phone and scan the payment code under the article to sponsor Yi Ling's efforts, thank you.)

2. Introduction Case

2.1. Introducing the case

I don’t know if readers play qq space. If readers have played qq space, they should be able to see this phenomenon: when browsing friends’ updates, quick browse When you reach the bottom, the system will automatically load a batch of friend updates. With a structural diagram:

$.ajax+php practical tutorial to automatically load more articles when you pull down the principle explanation

Today, we will analyze the principle of this effect, and then make a simple case, and combine it with php # tomorrow ##sql Conduct a real case explanation.

3. Preparation work

Let’s first take a look at what we need to have if we want to realize this function!

1. Any editor, such as:
Dreamweaver, HBuilder, Sublime Text, EditPlus, Notepad etc.; 2. Be able to use css layout;
3. Have js or jq foundation;
4. Be able to use
ajax; 5. Be able to
php and sql statement query;

Below we will make breakthroughs in the above preparations one by one!

3.1. Solving editor problems

There is no need to say more about the editor. Just search online, download it and then proceed with steps such as decompression and installation. If the reader does not know this step, it is recommended to browse the article→→Dreamweaver Cs6 Installation and follow the article to install the Dreamweaver software.

3.2. Solve p css layout problem

As mentioned before, today we will only talk about a simple case, so we only need a simple layout. For layout, take the analysis chart above as an example. Before coding, Yi Ling recommends readers to write their own code based on the above analysis chart. Use tags casually, but pay attention to the core content.

3.2.1, html layout


  1. 
    

     

      默认展示的内容  

     

    点击加载更多内容......

With the layout, we also need css to beautify it.

3.2.2, css style


  1. ##
Let’s take a look at the renderings shown in the source code above! Picture:

$.ajax+php practical tutorial to automatically load more articles when you pull down the principle explanation

Okay, the layout step is done, now it’s a little more difficult!

4. What does js/jq do?

I don’t know if the reader has noticed, but at this time Yi Ling has taken out

jq to talk about it separately. After all, this cannot be explained clearly in one or two lines of code. Let’s further analyze the effect of this case!

By default, we browse friends’ updates from top to bottom. At this time, it is like browsing a normal web page; when we almost finish browsing friends’ updates, the ordinary web page reaches the bottom and there is no content. But what about Tencent? It automatically loaded it again and then inserted the data into the page. Since the page has new data, the browser scroll bar is still a long way from the bottom. At this time, we seem to be back to the previous state. , continue to scroll down. When it is almost to the end again, the data is loaded and filled again, and then the browsing continues, and so on...

Then the problem comes!
1. How to know that the user is about to finish browsing the content?
2. How to trigger the automatic loading event when browsing is finished?

Since there is a problem, we have to solve it.

I don’t know if the reader paid attention to Yi Ling’s description just now. There is a key point in the description Scroll bar!

What can the scroll bar do? What role does it play in our case?

We can calculate the distance between the scroll bar and the top of the page!

What is the use of calculating this distance?

This distance alone is useless, but don’t forget, there is also a #ylsj-load tag in the htmlsource code! Did you notice that you don’t see this #ylsj-load in the picture above?

Huh! Yes, why didn’t I see it? Where did it go?

It’s okay if you haven’t seen it. If you have seen it, it won’t work!

The reason why you can't see it is because he is below and is supported by the default content. As mentioned before, after scrolling the browser, you can get a scrolling height. At this time, this #ylsj-load is also a height away from the top. When #ylsj-load is about to be displayed, it means that it is almost reaching the bottom. Picture: $.ajax+php practical tutorial to automatically load more articles when you pull down the principle explanationAt this time we need to trigger the loading.

至此,我们刚提的两个问题就已经解决了,现在来写jq代码吧!

4.1、jq判断是否快到拉到底部

4.1.1、jq判代码


  1. 
    
    

此时我们去刷新页面,尝试向下拉动滚动条,快到底部时可以看到有弹窗提示。配图: 

既然可以看到弹窗,表示我们的js代码成功了。接下来就是添加数据了。

4.2、触发点击事件添加数据

今天我们不讲ajaxphp,明天再讲。今天只讲一个简单的点击加载数据操作。

由于我们今天没有数据,那就用一个盒子充当数据吧。

现在数据有了,但又有新的问题!
1、点击事件怎么写?
2、新的“数据”如何插入到页面中?

4.2.1、点击事件


此时我们手动去点击“点击加载更多内容......”这个按钮会看到有弹窗提示,配图: 

4.2.2、插入内容

  1. $(this).before('

    加载的数据外框架<\/p>');

我们将上面的代码放到4.2.1中,替换掉原alert弹框。再次点击时配图: 

好了,差不多了。但是有一个问题:现在是点击才去进行加载,如何做到让他自动加载呢???

这个作为今天的作业吧。友情提示:建议回头看4.1.1的代码片段。明日会继续进行后续讲解。


上次留下的问题不知道看官们有没有解决,没有解决的看下面的答案吧。

4.4、自动加载思路

我们在4.1中已经可以判断出滚动条是否快到拉到底部,在4.2中我们又做出了点击事件和加载“数据”的步骤,所以我们这个自动加载可以将4.14 2结合起来。也就是说:当滚动条快拉到底部时,我们让它去触发点击事件。

4.5、自动加载源码

4.5.1、完整jquery代码


  1. 
    

案例欣赏:

怎么样,是不是有点感觉了?

接下来我们继续向下进行。

五、使用ajax发送请求

5.1、ajax格式

这个ajax的话呢,其实也不是多难,我们还是要先写好框架,然后再进行替换上面的代码。

5.1.1、ajax发送请求代码


  1. $.ajax({
     type:"/*类型,post或get*/",
     url:'要请求的php文件地址',
     data:{/*要传递的参数*/},
     dataType:"/*数据类型,html、json、xml等*/",
     success:function(data){
      /*成功时返回数据*/
     },error:function(jqXHR){
      /*失败时进行提示*/
     }
    });

上面的代码怎么用呢?

其实我们只要稍微思考下就行了。上面是代码,代码需要去执行啊!既然是需要去执行,那什么时候才去执行呢???

当然是点击的时候去触发ajax了!好,我们继续来完善我们的代码。

5.2、ajax和jquery进行结合

5.2.1、ajax和jquery进行结合


  1. 
    
    

上面的代码中还有一些参数没有修改,因为这些参数要根据我们接下来的php进行修改。

六、php文件

6.1、分析php文件做什么事情

这个php文件里面有什么内容呢?具体内容还是要根据我们具体的案例来进行写代码。

举个例子:我们要做一个下拉时自动加载文章的效果。既然是加载文章,所以我们需要知道以下这些数据:文章标题、文章简介、文章缩略图、发表日期、来源网站、作者、阅读量、评论数等等。这些数据都需要通过这个php文件传递给我们上面的ajax

6.2、sql语句查询信息

Since we are passing data, we need to query the data. It is impossible to say that the information should be written down directly. This is unrealistic! Therefore, this php file also contains our sql statement.

Oh cake seller! The first jquery can be understood a little bit, but the following ajax is completely incomprehensible, let alone the php and sql queries. Presumably some readers will feel this way.

then what should we do? Follow the article’s ideas to learn the corresponding knowledge! If you only know the copy code but don’t know the principles and processes, you won’t be able to use it in another place.

7. Finally

The principle of automatically loading when pulling down is roughly the same. For source code, it is basically the same. Next time, Yi Ling will call the data in several website management systems to make plug-ins. The readers who need it can download the corresponding plug-ins according to their own needs.

This article explains the principle of automatically loading more articles when pulling down the $.ajax php practical tutorial. For more related content, please pay attention to the php Chinese website.

Related recommendations:

About the zx-image-view image preview plug-in, which supports rotation, scaling, and moving related operations

##Explain the first lesson of the basics of WeChat applet development

Detailed explanation of the usage of selenium

The above is the detailed content of $.ajax+php practical tutorial to automatically load more articles when you pull down the principle explanation. For more information, please follow other related articles on the PHP Chinese website!

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