Thứ Tư, 19 tháng 2, 2014

Script - Overview of Google Apps Script



Google Apps Script


  • GUIDES
  • Google Services and External APIs
  • Types of Scripts
  • Development Environment
  • Events and Triggers
  • Extending Google Apps
  • Storing and Serving Data
  • Menus and User Interfaces

  • REFERENCE
  • Google Apps Services
  • Advanced Google ServicesExperimental!
  • Script Services

  • HELP
  • Support
  • Other Resources
  • Stay Connected
--------------------------------------------------------------------------------------------

Google Apps Script

Tổng quan 

▸ Quickstarts 5-Minute
▸ trung cấp Hướng dẫn

HƯỚNG DẪN
▸ Google Dịch vụ và các API bên ngoài
▸ Loại Scripts
▸ Môi trường phát triển
▸ Các sự kiện và Triggers
▸ Mở rộng Google Apps
▸ Lưu trữ và phục vụ dữ liệu
▸ Menu và giao diện người dùng

THAM KHẢO
▸ Dịch vụ Google Apps
▸ Nâng cao Google ServicesExperimental!
▸ kịch bản dịch vụ

TRỢ GIÚP
▸ hỗ trợ
▸ Tài nguyên khác
▸ Vẫn đang kết nối

--------------------------------------------------------------

Overview of Google Apps Script

Google Apps Script is a scripting language based on JavaScript that lets you do new and cool things with Google Apps like Docs, Sheets, and Forms. There's nothing to install — we give you a code editor right in your browser, and your scripts run on Google's servers.
If you're new to JavaScript, Codecademy offers a great course for beginners. (Note that this course was not developed by and is not associated with Google.) 

Tổng quan về Google Apps Script

Google Apps Script là một ngôn ngữ kịch bản dựa trên JavaScript cho phép bạn làm những điều mới mẻ và thú vị với Google Apps như Documents, tấm, và hình thức. Có gì để cài đặt - chúng tôi cung cấp cho bạn một trình biên tập mã ngay trong trình duyệt của bạn, và các kịch bản chạy trên các máy chủ của Google.
Nếu bạn mới đến JavaScript, Codecademy cung cấp một khóa học tuyệt vời cho người mới bắt đầu. (Lưu ý rằng quá trình này đã không được phát triển bởi không liên kết với Google.)



-------------------------------

What can Apps Script do?

Apps Script is versatile. Among other things, you can:
Có thể Apps Script làm những gì? 
    Ứng dụng Script là linh hoạt. Trong số những thứ khác, bạn có thể:



    • Thêm các menu tùy chỉnh, hộp thoại, và các sidebar Google Docs, tấm, và Forms 
    • Viết các chức năng tùy chỉnh cho Google Sheets 
    • Xuất bản các ứng dụng web - độc lập hoặc nhúng vào trong Google Sites 
    • Tương tác với các dịch vụ khác của Google, bao gồm AdSense, Analytics, Lịch, Drive, Tài chính, Gmail, và Maps
    For a quick demo of Apps Script in action, try one of our 5-minute quickstarts:
    Cho một bản demo nhanh chóng của các ứng dụng Script hành động, hãy thử một trong quickstarts 5 phút của chúng tôi:
    • Chức năng macro, trình đơn, và tùy chỉnh: chức năng Tailor bảng tính và xây dựng báo cáo với các mục menu tùy chỉnh Google Sheets. 
    • Quản lý phản hồi cho Google Forrms: Email Lịch mời và Google Doc cá nhân để mỗi người dùng phản ứng với một forrm.

    Your first script





    The steps below show how to build and run a simple standalone script that creates a Google Doc and emails you a link.

    Các bước dưới đây cho thấy làm thế nào để xây dựng và chạy một kịch bản đơn giản độc lập tạo ra một Doc và email cho bạn một liên kết của Google.

    Set it up

    1. Visit script.google.com to open the script editor. (You'll need to be signed in to your Google account.) If this is the first time you've been to script.google.com, you'll be redirected to a page that introduces Apps Script. ClickStart Scripting to proceed to the script editor.
    2. A welcome screen will ask what kind of script you want to create. Click Blank Project or Close.
    3. Delete any code in the script editor and paste in the code below.Thiết lập nó

      Thăm script.google.com để mở trình soạn thảo kịch bản. (Bạn sẽ cần phải đăng nhập vào tài khoản Google của bạn.) Nếu đây là lần đầu tiên bạn đã đến script.google.com, bạn sẽ được chuyển hướng đến một trang giới thiệu Apps Script. ClickStart Scripting để tiến hành biên tập kịch bản.
      Một màn hình chào mừng sẽ yêu cầu loại kịch bản mà bạn muốn tạo. Bấm Dự án Trống hoặc Close.
      Xóa bất kỳ mã trong trình soạn thảo kịch bản và dán đoạn mã dưới đây.
      function createAndSendDocument() {
        // Create a new Google Doc named 'Hello, world!'
        var doc = DocumentApp.create('Hello, world!');
      
        // Access the body of the document, then add a paragraph.
        doc.getBody().appendParagraph('This document was created by Google Apps Script.');
      
        // Get the URL of the document.
        var url = doc.getUrl();
      
        // Get the email address of the active user - that's you.
        var email = Session.getActiveUser().getEmail();
      
        // Get the name of the document to use as an email subject line.
        var subject = doc.getName();
      
        // Append a new string to the "url" variable to use as an email body.
        var body = 'Link to your doc: ' + url;
      
        // Send yourself an email with a link to the document.
        GmailApp.sendEmail(email, subject, body);
      }
      
    4. Select the menu item File > Save. Name your new script and click OK.

    Try it out

    1. To execute the script, either click ▶ or select the menu item Run > createAndSendDocument.
    2. A dialog box will appear and tell you that the script requires authorization. Click Continue. A second dialog box will then request authorization for specific Google services. Read the notice carefully, then click Accept.
    3. A yellow bar at the top of the script editor will indicate when the script is running. When the yellow bar disappears, the script has finished.
    4. Check your Gmail inbox for the new email, then click the link to open the Google Doc you created.
    5. Open your Google Drive. You'll see that both the script and the document are stored there.

    Learn more

    To continue learning about Apps Script, take a look at the following resources:











    function createAndSendDocument() { // Create a new Google Doc named 'Hello, world!' var doc = DocumentApp.create('Hello, world!'); // Access the body of the document, then add a paragraph. doc.getBody().appendParagraph('This document was created by Google Apps Script.'); // Get the URL of the document. var url = doc.getUrl(); // Get the email address of the active user - that's you. var email = Session.getActiveUser().getEmail(); // Get the name of the document to use as an email subject line. var subject = doc.getName(); // Append a new string to the "url" variable to use as an email body. var body = 'Link to your doc: ' + url; // Send yourself an email with a link to the document. GmailApp.sendEmail(email, subject, body); }

    Không có nhận xét nào:

    Đăng nhận xét