小编J14*_*148的帖子

使用Google Apps脚本从Firebase读取数据

因此,正如标题所示,我目前正在研究一个相当棘手的问题.这是场景.

我有一个包含名称,电子邮件和到期日期模板的Google电子表格.但是,它不包含实际数据.数据本身位于Firebase中,并且不断变化.那么,我的目标是允许script.gs附加到我的电子表格的文件从Firebase读取,或者通过定时间隔或使用Firebase的典型dataRef.on('value',function(){});.

我已经尝试过使用网络应用程序了,但是Caja会对Firebase的代码进行分解,为了使用Firebase对象,您必须拥有该代码.我尝试将Firebase脚本包含为库,然后将其直接复制到script.gs.没有任何效果.

我相信我的问题很大程度上源于gs环境,即服务器.但是,cURL放入时似乎不起作用script.gs.无论如何,希望你们其中一个人有答案.如果您需要进一步说明,请与我们联系.

google-sheets google-apps-script firebase

6
推荐指数
1
解决办法
2489
查看次数

Css和Jquery动画

我想要实现的是这个动画

在此输入图像描述

链接到动画是Material Design

我缺少什么?如何在不使用position:absolute物品的情况下实现上述结果

到目前为止我做了什么

HTML:

<div class="product-list  " id="product_list">  
    <div class="item ">
        <a href="#" data-id="228">
            <div class="item-top">
                <img width="211" height="165" src="" class="et-portfolio-thumbnail img-responsive wp-post-image" alt="product66_26">                    
            </div>
            <div class="item-bottom">
                <div class="item-product-title">Unicity Activate</div>
            </div>
        </a>
    </div>

    <div class="item ">
        <a href="#" data-id="227">
            <div class="item-top">
                <img width="165" height="193" src="" class="et-portfolio-thumbnail img-responsive wp-post-image" alt="product55_24">                    
            </div>
            <div class="item-bottom">
                <div class="item-product-title">Lean Complete</div>
            </div>
        </a>
    </div>

    <div class="item ">
        <a href="#" data-id="223">
            <div class="item-top">
                <img width="245" height="215" src="" class="et-portfolio-thumbnail img-responsive wp-post-image" alt="product44_21">                    
            </div> …
Run Code Online (Sandbox Code Playgroud)

css jquery css3 css-animations

5
推荐指数
2
解决办法
585
查看次数

使用ERB生成HTML文件?

如果我有一个.html.erb看起来像这样的文件:

<html>
    <head>
        <title>Test</title>
    </head>
    <body>
        <%= @name %>
    </body>
</html>
Run Code Online (Sandbox Code Playgroud)

如何生成看起来像这样的HTML文件?

<html>
    <head>
        <title>Test</title>
    </head>
    <body>
        John
    </body>
</html>
Run Code Online (Sandbox Code Playgroud)

如果格式为.html.erb并且能够获得.html文件,我该如何执行模板(传递name参数)?

html ruby erb

3
推荐指数
1
解决办法
6142
查看次数

使用Google Apps脚本向我的Feed发送推文

正如标题所示,我的目标是能够发送一条推文script.gs.该推文将发布到我的Feed中,理想情况下我无需访问Twitter网站.

我写了两个主要功能来尝试这个:

script.gs

//post tweet
function oAuth() {
  var CONSUMER_KEY = "**********************";
  var CONSUMER_SECRET = "*************************************************";
  ScriptProperties.setProperty("TWITTER_CONSUMER_KEY", CONSUMER_KEY);
  ScriptProperties.setProperty("TWITTER_CONSUMER_SECRET", CONSUMER_SECRET);
  var oauthConfig = UrlFetchApp.addOAuthService("twitter");
  oauthConfig.setAccessTokenUrl("https://api.twitter.com/oauth/access_token");
  oauthConfig.setRequestTokenUrl("https://api.twitter.com/oauth/request_token");
  oauthConfig.setAuthorizationUrl("https://api.twitter.com/oauth/authorize");
  oauthConfig.setConsumerKey(ScriptProperties.getProperty("TWITTER_CONSUMER_KEY"));
  oauthConfig.setConsumerSecret(ScriptProperties.getProperty("TWITTER_CONSUMER_SECRET"));
  var options = {muteHttpExceptions: true,oAuthServiceName:'twitter',oAuthUseToken:'always'}
  var url = "https://api.twitter.com/1.1/statuses/user_timeline.json";
  var response = UrlFetchApp.fetch(url, options).getContentText();
  Logger.log(response);
}
function postTweet() {
  oAuth();
  Logger.log('oAuth complete');
  var status = "Tweet";
  var Roptions = {
    method: "post",
    oAuthServiceName: "twitter",
    oAuthUseToken: "always",
    status: status
  };
  var url = "https://api.twitter.com/1.1/statuses/update.json";
  Logger.log('begin post');
  var request = UrlFetchApp.fetch(url, …
Run Code Online (Sandbox Code Playgroud)

twitter google-apps-script twitter-oauth

3
推荐指数
1
解决办法
1300
查看次数

使用display:block后无法隐藏div

我想在点击元素时打开一个框...然后当我点击"关闭"按钮时让它消失...但这不起作用.该框确实通过使用"display:block"出现,但它不会随着"display:none"而消失(参见随附的代码)

(我也尝试使用带有css attribut的类的addClass和removeClass,例如display:none但是也没有用.)

<html>
    <head>
        <script src="//code.jquery.com/jquery-1.10.2.js"></script>
        <script src="//code.jquery.com/ui/1.11.0/jquery-ui.js"></script>
        <style>
            div.back {  
                float: left;
                background-color: grey;
                width:100px;
                height:100px;
                margin:10px;
                padding:10px;
            }
            .window {
                display: none;
                position: fixed;
                top: 150px;
                left: 150px;
                width:150px;
                height:100px; 
                background-color:blue;
            }
        </style>
        <script>
            $(document).ready(function(){
                $(".back").click(function(){       
                    $(".window").css("display","block");     
                });
                $(".btn_validate").click(function(){        
                    $(".window").css("display","none");              
                });
            });
        </script>
    </head>
    <body>
        <div class="back">
            Some text
            <div id="draggable" class="window">
                <input type="button" value="CLOSE" class="btn_validate"/>
            </div>
        </div>
    </body>
</html>
Run Code Online (Sandbox Code Playgroud)

css jquery

2
推荐指数
1
解决办法
1256
查看次数

学习HTML和CSS

我正在学习HTML和CSS.我正在使用带有CSS和XHTML的Head First HTML一书.我能够让HTML代码正常工作; 然而,当我在浏览器中打开它时,当我尝试使用css中的代码工作时,看起来所有的css都被忽略了,并且它没有以任何方式格式化.这是我正在使用的代码.

<html>
    <head>
        <title>Starbuzz Coffee</title>
        <style type=”text/css”>
            body {
                background-color: #d2b48c;
                margin-left: 20%;
                margin-right: 20%;
                border: 1px dotted gray;
                padding: 10px 10px 10px 10px;
                font-family: sans-serif;
            }
        </style>
    </head>
    <body>
        <h1>Starbuzz Coffee Beverages</h1>
        <h2>House Blend, $1.49</h2>
        <p>A smooth, mild blend of coffees from Mexico, Bolivia and Guatemala.</p>
        <h2>Mocha Caffe Latte, $2.35</h2>
        <p>Espresso, steamed milk and chocolate syrup.</p>
        <h2>Cappuccino, $1.89</h2>
        <p>A mixture of espresso, steamed milk and milk foam.</p>
        <h2>Chai Tea, $1.85</h2>
        <p>A spicy drink made with black …
Run Code Online (Sandbox Code Playgroud)

html css

-1
推荐指数
1
解决办法
181
查看次数