Dns javascript

JavaScript là một phần quan trọng của nền tảng web vì ngôn ngữ lập trình này cung cấp nhiều tính năng để đưa web trở thành một nền tảng ứng dụng mạnh mẽ. Việc tạo điều kiện cho người dùng tìm ra các ứng dụng web sử dụng JavaScript của bạn thông qua Google Tìm kiếm có thể giúp bạn tìm thấy người dùng mới và tiếp tục thu hút người dùng hiện tại khi họ tìm kiếm nội dung ứng dụng web . Mặc dù Google Tìm kiếm chạy JavaScript bằng một phiên bản Chromium tự động cập nhật, nhưng bạn vẫn có thể tối ưu hóa một số yếu tố

Hướng dẫn này mô tả cách Google Tìm kiếm xử lý JavaScript và các phương pháp hay nhất để cải thiện ứng dụng web sử dụng JavaScript cho Google Tìm kiếm

Cách Google xử lý JavaScript

Google xử lý các ứng dụng web sử dụng JavaScript theo ba giai đoạn chính

  1. Thu thập dữ liệu
  2. Kết quả xuất
  3. Lập chỉ mục

Our products

  • Our services
  • Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }]; 0]
  • Add
      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    1 into the error pages by JavaScript
  • Sau đây là mã mẫu cho phương pháp sử dụng lệnh chuyển hướng

    fetch[`/api/products/${productId}`]
    .then[response => response.json[]]
    .then[product => {
      if[product.exists] {
        showProductDetails[product]; // shows the product information on the page
      } else {
        // this product does not exist, so this is an error page.
        window.location.href = '/not-found'; // redirect to 404 page on the server.
      }
    }]
    

    Sau đây là mã mẫu cho phương pháp sử dụng thẻ

      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    2

    fetch[`/api/products/${productId}`]
    .then[response => response.json[]]
    .then[product => {
      if[product.exists] {
        showProductDetails[product]; // shows the product information on the page
      } else {
        // this product does not exist, so this is an error page.
        // Note: This example assumes there is no other meta robots tag present in the HTML.
        const metaRobots = document.createElement['meta'];
        metaRobots.name = 'robots';
        metaRobots.content = 'noindex';
        document.head.appendChild[metaRobots];
      }
    }]
    

    Lịch sử API sử dụng thay vì các mảnh

    Khi tìm kiếm các đường liên kết trong các trang của bạn, Googlebot chỉ xem xét các URL thuộc tính

    fetch[`/api/products/${productId}`]
    .then[response => response.json[]]
    .then[product => {
      if[product.exists] {
        showProductDetails[product]; // shows the product information on the page
      } else {
        // this product does not exist, so this is an error page.
        // Note: This example assumes there is no other meta robots tag present in the HTML.
        const metaRobots = document.createElement['meta'];
        metaRobots.name = 'robots';
        metaRobots.content = 'noindex';
        document.head.appendChild[metaRobots];
      }
    }]
    
    1 của các đường liên kết HTML

    Đối với các ứng dụng trang đơn tuyến đường phía máy khách, hãy sử dụng Lịch sử API để phát triển tuyến đường giữa các chế độ xem của ứng dụng web. Để đảm bảo Googlebot có thể tìm thấy các đường liên kết, hãy tránh sử dụng các mảnh để tải các nội dung trang khác nhau. Ví dụ sau đây là một cách không làm hay vì Googlebot sẽ không thu thập dữ liệu các đường liên kết này

      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];

    Thay vào đó, bạn có thể phát triển History API để đảm bảo Googlebot truy cập được các URL liên kết

    fetch[`/api/products/${productId}`]
    .then[response => response.json[]]
    .then[product => {
      if[product.exists] {
        showProductDetails[product]; // shows the product information on the page
      } else {
        // this product does not exist, so this is an error page.
        // Note: This example assumes there is no other meta robots tag present in the HTML.
        const metaRobots = document.createElement['meta'];
        metaRobots.name = 'robots';
        metaRobots.content = 'noindex';
        document.head.appendChild[metaRobots];
      }
    }]
    
    3

    Chèn thẻ
      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    4 cho đường liên kết theo đúng cách

    Tuy nhiên, bạn không nên sử dụng JavaScript trong trường hợp này, nhưng bạn có thể chèn bằng JavaScript. Google Tìm kiếm sẽ chọn URL chính được chèn vào khi hiển thị trang. Sau đây là một ví dụ về cách chèn thẻ liên kết

      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    4 bằng JavaScript

    fetch[`/api/products/${productId}`]
    .then[response => response.json[]]
    .then[product => {
      if[product.exists] {
        showProductDetails[product]; // shows the product information on the page
      } else {
        // this product does not exist, so this is an error page.
        // Note: This example assumes there is no other meta robots tag present in the HTML.
        const metaRobots = document.createElement['meta'];
        metaRobots.name = 'robots';
        metaRobots.content = 'noindex';
        document.head.appendChild[metaRobots];
      }
    }]
    
    6Khi sử dụng JavaScript để chèn thẻ liên kết
      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    4, hãy đảm bảo rằng đây là thẻ liên kết
      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    4 duy nhất trên trang. Nếu triển khai không chính xác, có thể bạn sẽ tạo ra nhiều thẻ liên kết
      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    4 hoặc thay đổi một thẻ liên kết
      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    4 hiện có. Tình trạng xung đột hoặc có nhiều thẻ
      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    4 liên kết có thể dẫn đến kết quả không mong muốn

    Cẩn thận khi sử dụng thẻ meta robot

    Thông qua thẻ meta robot, bạn có thể ngăn Google lập chỉ mục một trang hoặc đi theo các đường liên kết. Ví dụ. việc thêm thẻ meta sau đây vào đầu trang sẽ chặn Google thiết lập chỉ mục trang đó

    fetch[`/api/products/${productId}`]
    .then[response => response.json[]]
    .then[product => {
      if[product.exists] {
        showProductDetails[product]; // shows the product information on the page
      } else {
        // this product does not exist, so this is an error page.
        // Note: This example assumes there is no other meta robots tag present in the HTML.
        const metaRobots = document.createElement['meta'];
        metaRobots.name = 'robots';
        metaRobots.content = 'noindex';
        document.head.appendChild[metaRobots];
      }
    }]
    
    2

    Bạn có thể sử dụng JavaScript để thêm thẻ meta robot vào một trang hoặc thay đổi nội dung thẻ. Mã minh họa sau đây cho thấy cách thay đổi thẻ meta robot bằng JavaScript để ngăn Google thiết lập chỉ mục trang hiện tại nếu lệnh gọi API không trả về nội dung

    fetch[`/api/products/${productId}`]
    .then[response => response.json[]]
    .then[product => {
      if[product.exists] {
        showProductDetails[product]; // shows the product information on the page
      } else {
        // this product does not exist, so this is an error page.
        // Note: This example assumes there is no other meta robots tag present in the HTML.
        const metaRobots = document.createElement['meta'];
        metaRobots.name = 'robots';
        metaRobots.content = 'noindex';
        document.head.appendChild[metaRobots];
      }
    }]
    
    3

    Khi gặp

      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    2 trong thẻ meta robot trước khi chạy JavaScript, Google sẽ không xuất hoặc thiết lập chỉ mục trang

    Nếu gặp thẻ
      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    2, Google sẽ bỏ kết quả xuất và thực thi JavaScript. Do Google bỏ qua JavaScript trong trường hợp này nên không thể xóa thẻ đó khỏi trang.
    Việc sử dụng JavaScript để thay đổi hoặc xóa thẻ meta robot không thể mang lại hiệu quả như mong đợi. Google bỏ qua việc xuất và thực thi JavaScript nếu thẻ meta robot ban đầu chứa
      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    2. Nếu có thể có trường hợp bạn muốn Google thiết lập chỉ mục trang đó, thì đừng sử dụng thẻ
      
    
    
    

    Welcome to example.com!

    Learn more about our products and our services

    window.addEventListener['hashchange', function goToPage[] { // this function loads different content based on the current URL fragment const pageToLoad = window.location.hash.slice[1]; // URL fragment document.getElementById['placeholder'].innerHTML = load[pageToLoad]; }];
    2 trong mã của trang gốc

    Sử dụng phương pháp lưu vào bộ nhớ đệm trong thời gian dài

    Googlebot thường xuyên lưu nội dung vào bộ nhớ đệm để giảm số lượng yêu cầu gửi đến các mạng cũng như giảm mức sử dụng tài nguyên. Web service output [WRS] can't remove a buffer memory. This is could make WRS using old JavaScript resource or CSS resource. Tính năng tạo vân tay số cho nội dung có thể giúp bạn tránh được vấn đề này thông qua việc tạo vân tay số cho phần nội dung trong tên tệp, ví dụ như

    fetch[`/api/products/${productId}`]
    .then[response => response.json[]]
    .then[product => {
      if[product.exists] {
        showProductDetails[product]; // shows the product information on the page
      } else {
        // this product does not exist, so this is an error page.
        // Note: This example assumes there is no other meta robots tag present in the HTML.
        const metaRobots = document.createElement['meta'];
        metaRobots.name = 'robots';
        metaRobots.content = 'noindex';
        document.head.appendChild[metaRobots];
      }
    }]
    
    36. Vân tay số này sẽ phụ thuộc vào nội dung của tệp, vì vậy tên tệp sẽ thay đổi mỗi lần bạn cập nhật. Để tìm hiểu thêm, hãy xem

    Sử dụng dữ liệu có cấu trúc

    Khi sử dụng dữ liệu có cấu trúc trên các trang của mình, bạn có thể sử dụng. Hãy nhớ kiểm tra kết quả khai thác để tránh các sự cố

    Làm theo các phương pháp hay nhất đối với thành phần web

    Google support the web section. Khi xuất ra một trang, Google sẽ. Tức là Google chỉ nhìn thấy phần nội dung xuất hiện trong HTML đã xuất. Để đảm bảo rằng Googlebot vẫn có thể nhìn thấy nội dung của bạn sau khi xuất ra, hãy sử dụng công cụ Kiểm tra tính thân thiện với thiết bị di động hoặc Công cụ kiểm tra URL rồi xem HTML đã xuất

    Nếu nội dung không xuất hiện trong HTML đã xuất, Google sẽ không thiết lập chỉ mục được nội dung đó

    Trong ví dụ sau đây, một phần web thành phần được tạo ra và cho thấy nội dung DOM sáng bên trong DOM tương ứng tối đa. Một cách để đảm bảo tất cả nội dung DOM sáng và DOM tối đều xuất hiện trong HTML xuất ra là sử dụng phần tử

    fetch[`/api/products/${productId}`]
    .then[response => response.json[]]
    .then[product => {
      if[product.exists] {
        showProductDetails[product]; // shows the product information on the page
      } else {
        // this product does not exist, so this is an error page.
        // Note: This example assumes there is no other meta robots tag present in the HTML.
        const metaRobots = document.createElement['meta'];
        metaRobots.name = 'robots';
        metaRobots.content = 'noindex';
        document.head.appendChild[metaRobots];
      }
    }]
    
    9

    Sau khi xuất ra, Google có thể thiết lập chỉ mục nội dung này

    fetch[`/api/products/${productId}`]
    .then[response => response.json[]]
    .then[product => {
      if[product.exists] {
        showProductDetails[product]; // shows the product information on the page
      } else {
        // this product does not exist, so this is an error page.
        // Note: This example assumes there is no other meta robots tag present in the HTML.
        const metaRobots = document.createElement['meta'];
        metaRobots.name = 'robots';
        metaRobots.content = 'noindex';
        document.head.appendChild[metaRobots];
      }
    }]
    
    0

    Khắc phục hình ảnh và nội dung tải xuống từng phần

    Hình ảnh có thể sử dụng nhiều băng thông và giảm đáng kể hiệu suất. Một chiến lược hay là sử dụng phương pháp tải từng phần để chỉ tải hình ảnh khi người dùng sắp nhìn thấy hình ảnh đó. Để chắc chắn rằng bạn đang triển khai tải xuống từng phần theo cách phù hợp để tìm kiếm hoạt động, hãy làm theo nguyên tắc tải từng phần của chúng tôi

    Thiết kế hỗ trợ khả năng tiếp cận hỗ trợ

    Hãy tạo trang không chỉ cho các công cụ tìm kiếm mà còn cho người dùng. Khi bạn thiết kế trang web kế tiếp, hãy xem xét nhu cầu của người dùng, bao gồm cả những người không sử dụng trình duyệt hỗ trợ JavaScript [ví dụ:. những người sử dụng trình đọc màn hình hoặc thiết bị di động chưa đủ tiên tiến]. Một trong những cách dễ dàng nhất để kiểm tra khả năng hỗ trợ cận kề của trang web là xem trước trang web đó bằng trình duyệt đã tắt JavaScript hoặc xem bằng trình duyệt chỉ hỗ trợ văn bản như Lynx. Bằng cách xem một trang web dưới dạng văn bản đơn thuần, bạn có thể xác định được những nội dung khác mà Googlebot có thể khó nhận thấy, chẳng hạn như văn bản được nhúng trong hình ảnh

    Chủ Đề