Data
dùng để truy cập cụ thể vào các thông số kỹ thuật hiện có của nguồn dữ liệu Looker. Để tạo thông số kỹ thuật nguồn dữ liệu mới, hãy sử dụng Spreadsheet
.
Ví dụ này cho thấy cách bạn có thể lấy thông số kỹ thuật của nguồn dữ liệu Looker từ một trang tính chỉ có một kết nối Looker.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const lookerDataSourceSpec = ss.getDataSources()[0].getSpec().asLooker();
Phương thức
Phương thức | Loại dữ liệu trả về | Mô tả ngắn |
---|---|---|
copy() | Data | Tạo Data dựa trên chế độ cài đặt của nguồn dữ liệu này. |
get | String | Lấy tên của mục khám phá Looker trong mô hình. |
get | String | Lấy URL của phiên bản Looker. |
get | String | Lấy tên của mô hình Looker trong thực thể. |
get | Data | Lấy các tham số của nguồn dữ liệu. |
get | Data | Lấy loại nguồn dữ liệu. |
Tài liệu chi tiết
copy()
Tạo Data
dựa trên chế độ cài đặt của nguồn dữ liệu này.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const spec = ss.getDataSources()[0].getSpec(); const newSpec = spec.copy();
Cầu thủ trả bóng
Data
– Trình tạo.
get Explore Name()
Lấy tên của mục khám phá Looker trong mô hình.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const lookerDataSourceSpec = ss.getDataSources()[0].getSpec().asLooker(); const exploreName = lookerDataSourceSpec.getExploreName(); Logger.log(exploreName);
Cầu thủ trả bóng
String
– Tên của dữ liệu khám phá Looker.
get Instance Url()
Lấy URL của phiên bản Looker.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const lookerDataSourceSpec = ss.getDataSources()[0].getSpec().asLooker(); const instanceUrl = lookerDataSourceSpec.getInstanceUrl(); Logger.log(instanceUrl);
Cầu thủ trả bóng
String
– URL của phiên bản Looker.
get Model Name()
Lấy tên của mô hình Looker trong thực thể.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const lookerDataSourceSpec = ss.getDataSources()[0].getSpec().asLooker(); const modelName = lookerDataSourceSpec.getModelName(); Logger.log(modelName);
Cầu thủ trả bóng
String
– Tên của mô hình Looker.
get Parameters()
Lấy các tham số của nguồn dữ liệu.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const spec = ss.getDataSources()[0].getSpec(); const parameters = spec.getParameters();
Phương thức này chỉ áp dụng cho nguồn dữ liệu BigQuery.
Cầu thủ trả bóng
Data
– Danh sách tham số.
get Type()
Lấy loại nguồn dữ liệu.
// TODO(developer): Replace the URL with your own. const ss = SpreadsheetApp.openByUrl( 'https://docs.google.com/spreadsheets/d/abc123456/edit', ); const spec = ss.getDataSources()[0].getSpec(); const type = spec.getType();
Cầu thủ trả bóng
Data
– Loại nguồn dữ liệu.