小编jav*_*net的帖子

MongoDB Compass:选择不同的字段值

我正在使用 MongoDB Compass 并且没有 Mongo Shell。我需要使用 MongoDB Compass 工具构建一个查询,以从我的集合中选择“流派”字段的不同值。

指南针工具截图

样本输入:

{"_id":{"$oid":"58c59c6a99d4ee0af9e0c34e"},"title":"Bateau-mouche sur la Seine","year":{"$numberInt":"1896"},"imdbId":"tt0000042","genre":["Documentary”,”Short”],"viewerRating":{"$numberDouble":"3.8"},"viewerVotes":{"$numberInt":"17"},"director":"Georges Mlis"}
{"_id":{"$oid":"58c59c6a99d4ee0af9e0c340"},"title":"Watering the Flowers","year":{"$numberInt":"1896"},"imdbId":"tt0000035","genre":["Short”],"viewerRating":{"$numberDouble":"5.3"},"viewerVotes":{"$numberInt":"33"},"director":"Georges M?li?s"}
{"_id":{"$oid":"58c59c6a99d4ee0af9e0c34a"},"title":"The Boxing Kangaroo","year":{"$numberInt":"1896"},"imdbId":"tt0000048","genre":["Short”],"viewerRating":{"$numberDouble":"5.2"},"viewerVotes":{"$numberInt":"48"},"director":"Birt Acres"}
Run Code Online (Sandbox Code Playgroud)

预期输出:纪录片,短片

mongodb mongodb-compass

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

亚马逊联盟搜索广告脚本:未捕获的TypeError:无法读取null的属性'getBoundingClientRect'

我在我的网站上嵌入了亚马逊联盟原生搜索广告.当我测试我的开发笔记本电脑时,"搜索广告"显示没有任何问题.但是,当部署到托管提供商时,遇到运行时错误和亚马逊搜索广告未显示.请帮忙.

错误:

   Uncaught TypeError: Cannot read property 'getBoundingClientRect' of null
        at Object.v.getAAXUrl (onejs?MarketPlace=US:1)
        at Object.render (onejs?MarketPlace=US:1)
        at onejs?MarketPlace=US:1
    v.getAAXUrl @ onejs?MarketPlace=US:1
    render @ onejs?MarketPlace=US:1
    (anonymous) @ onejs?MarketPlace=US:1




//Amazon generated code

<script type="text/javascript">
amzn_assoc_placement = "adunit0";
amzn_assoc_search_bar = "true";
amzn_assoc_tracking_id = "******-**";
amzn_assoc_search_bar_position = "bottom";
amzn_assoc_ad_mode = "search";
amzn_assoc_ad_type = "smart";
amzn_assoc_marketplace = "amazon";
amzn_assoc_region = "US";
amzn_assoc_title = "Shop Related Products";
amzn_assoc_default_search_phrase = "watches";
amzn_assoc_default_category = "All";
amzn_assoc_linkid = "*********";
</script>
<script src="//z-na.amazon-adsystem.com/widgets/onejs?MarketPlace=US"></script>
Run Code Online (Sandbox Code Playgroud)

更新: 代码在IE浏览器(版本:11.0.9600.19267)中正常工作,没有任何问题.我在Chrome版本72.0.3626.109(官方版本)(64位)中遇到了此问题.我不确定其他浏览器/不同版本.

javascript amazon typeerror

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

错误:找不到模块:错误:无法解析“ @ angular / cdk / scrolling”

我遇到错误:从app.module.ts中的primeNG中添加导入TableModule时,立即出现“找不到模块:错误:无法解析'@ angular / cdk / scrolling'”。您能否帮助理解为什么引发此错误?我看不到primeNG文档https://www.primefaces.org/primeng/#/table中提到的任何模块依赖项。

错误: 编译失败。

./node_modules/primeng/components/dropdown/dropdown.js找不到模块:错误:无法解析“ / Users / admin / angular / MovieApp / node_modules / primeng / components / dropdown”中的“ @ angular / cdk / scrolling”

    import {TableModule} from 'primeng/table';
...
imports: [
    BrowserModule,
    AppRoutingModule,
    HttpClientModule,CarouselModule,FieldsetModule,BrowserAnimationsModule,LightboxModule,
    ScrollPanelModule,TableModule
  ],...
Run Code Online (Sandbox Code Playgroud)

primeng angular

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

akka actors framework - context.actorOf vs system.actorOf

你能解释一下我之间有什么区别吗?

context.actorOf

system.actorOf

java actor akka

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

什么是 Web 应用程序中的 .jspa URL 扩展名?

在许多在线 Web 应用程序中,我注意到应用程序 url 以 jspa 结尾。我的假设是它是一个 jsp 并且动作被映射到 jspa 而不是 *.do。

我的理解是正确的还是有实际的扩展/不同的含义?如果这个问题非常基本,请建议并忽略。我已经用谷歌搜索了,无法得到明确的答案。

jsp web-applications java-ee-6

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

如何仅针对 Angular7 中的字母数字和特殊字符触发 keydown 事件?

我有一个 keydown 事件,我希望它在我按下字母数字或特殊字符(如 #$@)时被触发。

  <input type="text" style="width: 70%;" [(ngModel)]= "textMessage" (keydown) ="sendTypingEvent()" >
Run Code Online (Sandbox Code Playgroud)

我想限制事件根本不会被触发,例如 enter、escape (esc)、shift、alt、tab、backspace 和 command (meta)、箭头和 f 键(f1 到 f12)。

有没有办法在 HTML 中设置 REGEX 模式?

<input (keydown.a)="..."> --expect to trigger
Run Code Online (Sandbox Code Playgroud)

我可以触发事件并过滤函数调用中的键,如下所示。但是,尝试看看是否还有其他选择。

sendTypingEvent(event) {
  if (event.key === "Enter" || event.key ==='esc' .... ) {
    console.log("skip this event");
  }

}
Run Code Online (Sandbox Code Playgroud)

javascript typescript angular

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

React Navigation V6 在 useFocusEffect 中使用 useCallback 问题无效钩子调用

React navigation V6 文档展示了在 useFocusEffect 中使用 useCallback 的示例。但是,当我使用相同的代码时,我遇到了无效的挂钩调用。

链接: https: //reactnavigation.org/docs/use-focus-effect/

例子:

import { useFocusEffect } from '@react-navigation/native';

function Profile({ userId }) {
  const [user, setUser] = React.useState(null);

  useFocusEffect(
    React.useCallback(() => {
      const unsubscribe = API.subscribe(userId, user => setUser(user));

      return () => unsubscribe();
    }, [userId])
  );

  return <ProfileContent user={user} />;
}
Run Code Online (Sandbox Code Playgroud)

错误:无效的挂钩调用。钩子只能在函数组件的主体内部调用。发生这种情况可能是由于以下原因之一:

您可能会看到它的三个常见原因:

  1. 您的 React 和 React DOM 版本可能不匹配。
  2. 您可能违反了 Hooks 规则。
  3. 您可能在同一个应用程序中拥有多个 React 副本。

据我了解,挂钩只能在函数组件的主体内部调用。但是,为什么文档中的上述示例不起作用?

包.json

 "@react-navigation/bottom-tabs": "^6.0.9",
 "@react-navigation/native": "^6.0.6",
 "@react-navigation/stack": "^6.0.11",
 "react": "17.0.2",
 "react-native": "0.65.1",
Run Code Online (Sandbox Code Playgroud)

reactjs react-native react-navigation-v6

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

如何在angular primeng中设置p-listbox的宽度?

我正在尝试将 p-listbox 组件宽度设置为 10 REM,但是我的更改无法做到。请在这里提出建议。我正在尝试在 css 类上应用宽度。但是,它不适用。但是,当我在 chrome 开发工具中使用类 .ui-listbox-list-wrapper 在 div 上应用时,它应用得很好。

仪表板.component.ts

import { Component, OnInit } from '@angular/core';  
import { SocialLoginModule, AuthServiceConfig, AuthService } from 'angular-6-social-login';  
import { Router } from '@angular/router';  
import { SocialUsers } from '../../model/social-users';
class City {
  name:string;
  code:string;
}


@Component({  
  selector: 'app-dashboard',  
  templateUrl: './dashboard.component.html',  
  styleUrls: ['./dashboard.component.css']  
})  


export class DashboardComponent implements OnInit {  
  socialusers = new SocialUsers();  

  cities1: City[];
  selectedCity1:string;



  constructor(public OAuth: AuthService,    private router: Router) { 

    this.cities1 = [
      {name: 'New …
Run Code Online (Sandbox Code Playgroud)

css primeng angular

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

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