小编Has*_*ana的帖子

Google Chrome DevTools元素搜索不再有效了?

大约一周前,我无法在Google Chrome DevTools中搜索元素或元素的内容.最新的Chrome更新是否会破坏此功能或者我应该注意哪些其他更改?

我首先想到我不小心改变了一些DevTools设置,但现在同样的事情也开始在我的另一台开发机器上发生了,所以我认为它必须是最新更新中的一个错误?

只有我吗?:)

编辑:经过几天的想知道可能导致这种情况...它重新启动我的Win 7机器后它刚刚开始工作.最简单的修复最好的修复,对吧?

另一方面,如果错误再次发生,我需要深入挖掘可能导致错误的内容并在必要时提交错误.

现在,它工作,我很高兴:)

DevTools元素搜索没有结果.这是一个截图: 截图

search element google-chrome-devtools

6
推荐指数
2
解决办法
1430
查看次数

如何导出函数和导入反应钩子

我知道并且知道如何做到这一点,但这会给我带来问题我只想导入功能{OnSubmitLog_In and username} ,也许更多如何正确列出它不会使它成为问题

2个js文件

第一个是这样的进口

import * as Login from './log_in';
import { OnSubmitLog_In, username } from './log_in';
Run Code Online (Sandbox Code Playgroud)

在第二个文件中

async function OnSubmitLog_In(e) {
    e.preventDefault();
    var data = { username, password }
    await axios.post("http://localhost:4000/users/signin", data, {
    }).then((response) => {
        if (localStorage.getItem('token', response.data.accessToken)) {
            alert('user alredy in')
        } else {
            alert('hellow ' + data.username)
            localStorage.setItem('token', response.data.accessToken)
            console.log('response data', response.data)
            console.log('response config', response.config.data)
        }


    }, (error) => {
        console.log('error', error)
        if (405) {
            alert('user not found')
        } else if (500) { …
Run Code Online (Sandbox Code Playgroud)

reactjs

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

CodeIgniter get_where

我正在尝试使用get_where来获取所有者等于登录用户的所有数据库记录的列表.

这是我在我的控制器中的功能;

function files()
{
    $owner = $this->auth->get_user();

    $this->db->get_where('files', array('owner =' => '$owner'))->result();
}
Run Code Online (Sandbox Code Playgroud)

在我看来,我有以下几点;

<?php foreach($query->result() as $row): ?>

    <span><?=$row->name?></span>

<?php endforeach; ?>
Run Code Online (Sandbox Code Playgroud)

当我尝试访问视图时,我收到致命错误:在第1行的/views/account/files.php中的非对象上调用成员函数result().

想知道是否有人对这可能是什么有任何想法?

谢谢

php codeigniter

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

404-not-found-while-running-spring-boot-rest-api

运行 springboot restservice 应用程序时出现 404 错误。我正在使用弹簧靴,球衣休息。我尝试过 GET 请求,http://localhost:8080/dunames但无法解决。请帮忙。

型号分类:

@Entity
@Table(name = "du")
public class duname {


    private String duname;
    @Id
    @GeneratedValue(strategy = GenerationType.AUTO)
    private int id; 
    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public duname()
    {

    }

    public duname(String duname, int id)
    {
    this.duname=duname; 
    this.id=id;
    }


    public String getDuname() {
        return duname;
    }

    public void setDuname(String duname) {
        this.duname = duname;
    }
}
Run Code Online (Sandbox Code Playgroud)

服务等级:

public class duservice { …
Run Code Online (Sandbox Code Playgroud)

java rest spring-boot

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

PHP Laravel GraphQL 查询声明不兼容问题

我按照以下文章在本地机器上使用 graphql 设置 laravel:

https://auth0.com/blog/developing-and-securing-graphql-apis-with-laravel

我一步一步地按照完整的文章进行操作,没有任何问题。但是当我运行我的应用程序时

php artisan serve
Run Code Online (Sandbox Code Playgroud)

并点击端点localhost:8000/graphql,我收到以下错误。

[Sat Aug 31 23:09:20 2019] PHP Fatal error: Declaration of App\GraphQL\Queries\WineQuery::type() must be compatible with Rebing\GraphQL\Support\Field::type(): GraphQL\Type\ Definition\Type in /Users/sushilsingh/Projects/winestore/app/GraphQL/Queries/WineQuery.php 在第 9 行

这是我的 WineQuery.php

<?php

namespace App\GraphQL\Queries;

use App\Wine;
use GraphQL\Type\Definition\Type;
use Rebing\GraphQL\Support\Query;

class WineQuery extends Query
{
    protected $attributes = [
        'name' => 'wine',
    ];

    public function type()
    {
        return GraphQL::type('Wine');
    }

    public function args()
    {
        return [
            'id' => [
                'name' => 'id',
                'type' => …
Run Code Online (Sandbox Code Playgroud)

php laravel graphql

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

使用 Dexie.js 编写多个 where 条件

如何使用 Dexie.js 编写如下所示的 where 条件?

field1=0 AND field2!='test' AND field3 IN(1,2,3,4)
Run Code Online (Sandbox Code Playgroud)

我试过这个,但我得到了一个错误......

.where('field1').equals(0).and('field2').notEquals('test').and('field3').anyOf([1,2,3,4]).toArray()
Run Code Online (Sandbox Code Playgroud)

我想是因为该".and"方法仅适用于函数。但是如果我必须写一个多地方与不同类型的条件条件(如:equalsnotEqualsanyOf)...我怎么能这样做?

感谢您的支持,提前致谢

javascript indexeddb dexie

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

关于expressjs中的next()函数的问题

我无法理解express.js 中 next() 函数的概念。我想我的第一个问题是 next() 是express.js 唯一的函数吗?我的第二个问题是,在下面的示例中下一步做什么?在控制台函数之后,它会转到之后调用的下一个函数?我很困惑。

var cb0 = function (req, res, next) {
  console.log('CB0');
  next();
}
Run Code Online (Sandbox Code Playgroud)

javascript node.js express

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

NavigationView和导航按钮上的链接单击快速UI?

我正在尝试从登录视图推送到详细信息视图,但无法做到这一点。即使导航栏也未显示在登录视图中。如何在swiftUI中按下按钮单击?如何在单击按钮时使用导航链接?

var body: some View {

    NavigationView {

            VStack(alignment: .leading) {

                     Text("Let's get you signed in.")
                       .bold()
                       .font(.system(size: 40))
                       .multilineTextAlignment(.leading)
                       .frame(width: 300, height: 100, alignment: .topLeading)
                       .padding(Edge.Set.bottom, 50)


                       Text("Email address:")
                           .font(.headline)
                                      TextField("Email", text: $email)
                                       .frame(height:44)
                                       .accentColor(Color.white)
                                       .background(Color(UIColor.darkGray))
                                       .cornerRadius(4.0)

                       Text("Password:")
                                      .font(.headline)

                      SecureField("Password", text: $password)
                                   .frame(height:44)
                                   .accentColor(Color.white)
                                   .background(Color(UIColor.darkGray))
                                   .cornerRadius(4.0)


                       Button(action: {
                           print("login tapped")

                       }) {
                           HStack {
                               Spacer()
                               Text("Login").foregroundColor(Color.white).bold()
                               Spacer()
                           }
                       }
                       .accentColor(Color.black)
                       .padding()
                       .background(Color(UIColor.darkGray))
                       .cornerRadius(4.0)
                       .padding(Edge.Set.vertical, 20)
                   }
                   .padding(.horizontal,30)
           }
            .navigationBarTitle(Text("Login"))
        }  
Run Code Online (Sandbox Code Playgroud)

ios swift swiftui

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

函数未返回任何值

我需要编写一个递归函数,该函数应返回给定数组中的最大数字,我正在使用方法.splice()删除较小的数字。当我的数组中只有一个元素时,我将返回该元素巫婆将是数组中的最大数字

逻辑似乎可行,但没有返回任何内容,任何想法?

function findMax(arr){
    // This function returns the largest number in a given array
     if (arr.length === 1){
        const bigNum = arr.pop();
        return bigNum
    }
    else if (arr[0] > arr[1]){
        arr.splice(1,1)
        findMax(arr)
    }
    else{
        arr.splice(0,1)
        findMax(arr)    
        }

}

y = findMax([1,6,8,2,10,5]);

y
undefined
Run Code Online (Sandbox Code Playgroud)

javascript recursion function

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

具有不同胡须长度的 Python 箱线图

我在 Pandas 中使用该DataFrame.boxplot()函数,我相信它称为matplotlib.pyplot.boxplot(). 文档说这些箱线图的默认晶须长度应该是 1.5IQR,但我不明白为什么同一个盒子的上/下晶须在图中的长度不同。(具体配置我没有做过)

抱歉,我想发布该图像,但我没有足够的声誉,所以我将其放在免费图像托管网站上,链接:

http://postimg.org/image/z0xtfg9gd/

python matplotlib pandas

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

如何将 JSON 对象附加到 react.js 中 JS 文件中的现有 JSON 对象

我正在尝试使用React.js制作一个 Todo 应用程序。

我从应用程序内的 js 文件中将 todo 数据作为 JSON 对象。我想在我的列表中添加更多待办事项,我想将其作为 JSON 对象存储在该 js 文件中。

我想附加另一个现有的 JSON 对象。我该怎么做?

TodoList.js 文件

const TodoList=
   [

    {
      "id": 1,
      "title": "Learn backbone",
      "complete": false,
      "canceled": false,
      "date": new Date().getTime()
    },

    {
      "id": 2,
      "title": "Go for a run",
      "complete": false,
      "canceled": false,
      "date": new Date().getTime()
    }
  ]

  export default TodoList;
Run Code Online (Sandbox Code Playgroud)

新的 TodoList.js 文件应该是这样的:

const TodoList=
[

    {
      "id": 1,
      "title": "Learn backbone",
      "complete": false,
      "canceled": false,
      "date": new Date().getTime()
    },

    {
      "id": …
Run Code Online (Sandbox Code Playgroud)

javascript reactjs

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