小编Rob*_*ert的帖子

Spring Mvc和Angular2在Tomcat服务器上运行

我想index.html从一个Angular 2项目中运行一个Spring MVC应用程序的欢迎页面.我们不能使用maven项目,只需创建spring MVC项目.

我已经尝试将angular dist文件夹复制到web目录中,

<welcome-file-list>
    <welcome-file>index.html</welcome-file>
</welcome-file-list>
Run Code Online (Sandbox Code Playgroud)

这是我的文件夹结构,

在此输入图像描述

我得到HTTP状态404 -Error

任何只能帮助我

提前致谢!!!

spring-mvc tomcat7 angular

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

处理Gmail加载项中持久的特定于用户的值

我创建了简单的Gmail插件,现在我正在努力应对以下策略.

安装插件后,当第一个收件箱打开时,我们会询问用户输入的基本信息,当他打开第二封邮件时,我们不会再次询问基本信息详情.

我怎么能处理这个?

我尝试过物业服务,但没有运气.

更新

var MAX_THREADS = 5;

/**
 * Returns the array of cards that should be rendered for the current
 * e-mail thread. The name of this function is specified in the
 * manifest 'onTriggerFunction' field, indicating that this function
 * runs every time the add-on is started.
 *
 * @param {Object} e data provided by the Gmail UI.
 * @returns {Card[]}
 */
function buildAddOn(e) {
  // Activate temporary Gmail add-on scopes.
  //Logger.log('E', Session.getActiveUser());
  var accessToken = …
Run Code Online (Sandbox Code Playgroud)

persistence global-variables google-apps-script gmail-addons

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

内部引导模式滚动到特定元素不起作用

我使用了boostrap modal.in,我们需要使用滚动到特定元素.我尝试使用下面的代码.但不起作用

 $('#centralModalLg').on('show.bs.modal', function() {
        $( "#elementId" ).scrollTop(0);

   });
Run Code Online (Sandbox Code Playgroud)

更新:

当我第一次打开模态窗口并滚动到特定区域时.在屏幕截图下方查看

在此输入图像描述

当打开模态第二次.scoll应该排在最前面,但我上次停在那里.

HTML:

<div class="modal fade" id="centralModalLg" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true" style="display: none;">
    <div class="modal-dialog" [ngClass]="{ 'modal-lg': productDetails?.imageUrl != null, 'modal-md': productDetails?.imageUrl == null}" role="document">
        <!--Content-->
        <div class="modal-content" *ngIf="productDetails">
            <div class="modal-body">

                <div class="row">
                    <div class="col-md-12">
                        <button *ngIf="productDetails.imageUrl != null" type="button" id="closeProductModal" class="close" data-dismiss="modal" aria-label="Close">
                        <span aria-hidden="true">&times;</span>
                      </button>

                        <h4>{{productDetails?.productName}}
                            <span>
                              <img *ngIf="!productDetails?.isVeg" alt="trending" class="w24" src="https://www.crashmeal.com/assets/images/icons/trending-m.png">
                            </span>
                            <span>
                                     <img  *ngIf="productDetails?.isVeg" alt="veg" class="w24" src="https://www.crashmeal.com/assets/images/icons/veg-m.png">
                             </span>
                        </h4>
                        <div id="elementId" class="over-flow-md">
                            <img *ngIf="productDetails.imageUrl != null" …
Run Code Online (Sandbox Code Playgroud)

javascript jquery bootstrap-modal bootstrap-4

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

我希望Django模型字段只能有两个可能的值

class Proposta(models.Model):
     descrizione = models.TextField()
     titolo = models.CharField(max_length=200)
     richiedibile = models.BooleanField(default=False)
     inRichiesta = models.BooleanField(default=False)
     archiviata = models.BooleanField(default=False)

     # tesi or AP
     tipologia = models.CharField(max_length=50)
Run Code Online (Sandbox Code Playgroud)

我希望“ tipologia”字段只能有两个可能的值:“ tesi”或“ AP”。换句话说,我希望该字段看起来像一个列表,用户可以在其中选择所需的值。

django

4
推荐指数
1
解决办法
1634
查看次数

谷歌应用程序脚本,gmail插件获取TextInput值

我用谷歌脚本创建了简单的gmail插件,因为我在这里很挣扎,

当我们执行某些操作时如何获取textinput值,我检查了文档,我找不到任何方法

的TextInput

我试过以下代码,

var card = CardService.newCardBuilder();
  card.setHeader(CardService.newCardHeader().setTitle("Login Here"));
  var section = CardService.newCardSection()
  var cleint_id_Input = CardService.newTextInput()
     .setFieldName("client_id")
     .setTitle("Please enter clinet id")
  var username_Input = CardService.newTextInput()
     .setFieldName("username")
     .setTitle("Please enter username")
  var password_Input = CardService.newTextInput()
     .setFieldName("password")
     .setTitle("Please enter password")
  section.addWidget(cleint_id_Input)
  section.addWidget(username_Input)
  section.addWidget(password_Input)
  Logger.log("Input Value%s",cleint_id_Input)
  //Login action button
  var action = CardService.newAction().setFunctionName('loginCallback');
  section.addWidget(CardService.newTextButton().setText('Login').setOnClickAction(action))  
  card.addSection(section)
Run Code Online (Sandbox Code Playgroud)

我需要"loginCallback"函数中的inputText值

提前致谢

google-apps-script gmail-addons

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

谷歌脚本在 gmail 插件中使用 html 服务

我尝试在 gmail 插件中创建简单的表单,

如何使用html服务

下面的代码,我试过了,

function buildAddOn(e) {
  var accessToken = e.messageMetadata.accessToken;
  GmailApp.setCurrentMessageAccessToken(accessToken);
  var test_card = doGet()
  cards.push(test_card);
  return cards;
}
function doGet() {
   return HtmlService.createHtmlOutput('<b>Hello, world!</b>');
 }
Run Code Online (Sandbox Code Playgroud)

提前致谢

google-apps-script gmail-addons

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

python DynamoDB扫描操作不返回所有记录

在 DynamoDB 表中,我在没有任何过滤器的情况下应用时有161712 条记录,我只收到了 10589 条扫描计数值

这是 mytable 元

{
  "AttributeDefinitions": [
    {
      "AttributeName": "question_id",
      "AttributeType": "N"
    },
    {
      "AttributeName": "timestamp",
      "AttributeType": "S"
    }
  ],
  "TableName": "users_answers",
  "KeySchema": [
    {
      "AttributeName": "timestamp",
      "KeyType": "HASH"
    },
    {
      "AttributeName": "question_id",
      "KeyType": "RANGE"
    }
  ],
  "TableStatus": "ACTIVE",
  "CreationDateTime": "2017-09-12T12:33:22.615Z",
  "ProvisionedThroughput": {
    "LastIncreaseDateTime": "2017-09-12T16:46:26.742Z",
    "NumberOfDecreasesToday": 0,
    "ReadCapacityUnits": 80,
    "WriteCapacityUnits": 80
  },
  "TableSizeBytes": 16014441,
  "ItemCount": 161712
}
Run Code Online (Sandbox Code Playgroud)

当我做上面表的扫描操作时只会得到 10589 条记录

table = dynamo.get_table('answer_options')
x    = table.scan()
Run Code Online (Sandbox Code Playgroud)

请建议我如何从表中获取整个记录

环境:python 3.5.1,flask dynamodb

提前致谢

python amazon-web-services amazon-dynamodb

0
推荐指数
1
解决办法
1963
查看次数