RError.com

RError.com Logo RError.com Logo

RError.com Navigation

  • 主页

Mobile menu

Close
  • 主页
  • 系统&网络
    • 热门问题
    • 最新问题
    • 标签
  • Ubuntu
    • 热门问题
    • 最新问题
    • 标签
  • 帮助
主页 / user-363814

Sire IMPACTUS's questions

Martin Hope
Sire IMPACTUS
Asked: 2024-09-06 16:06:28 +0000 UTC

如何从控制台运行已经运行的脚本函数 | NodeJS

  • 5

Nodejs 脚本通过控制台在服务器上启动。

nodejs script.js

是否可以以某种方式直接从控制台执行该脚本的功能之一?

例如:

//script.js
let timer = null;

function stopLoop() {
  self.clearInterval(timer);
  timer = null;
}

timer = self.setInterval(() => {
  console.log('loop');
}, 1000);
<div>Без него не дает вставить фрагмент</div>

我运行脚本:

nodejs script.js

我随时调用它的函数:

nodejs script.js:stopLoop

这个可以实现吗?

node.js
  • 1 个回答
  • 16 Views
Martin Hope
Sire IMPACTUS
Asked: 2023-07-29 01:41:54 +0000 UTC

PWA应用程序的同步| JS

  • 5

有一个带有 WebSocket 的 PWA 应用程序。当用户在线时,套接字负责更新数据。这没有问题。但是在网络丢失/关闭选项卡后,该数据的同步存在问题。如果在Windows上我可以监视网络,那么在同一个罂粟上,根据控制台判断,即使盖子关闭,也会时不时地发生与网络的连接(这已经使任务变得复杂)。因此,正确定义最后在线已经很困难了。对于离线选项卡,我在本地存储中创建条目,然后在其上进行同步。

谁能建议在哪里寻找同步 PWA 应用程序的正确方法?也许是一本书或文章的链接。

javascript
  • 1 个回答
  • 17 Views
Martin Hope
Sire IMPACTUS
Asked: 2023-01-31 14:23:09 +0000 UTC

获取添加到对象的最后一个键 | JS

  • 5

有一个对象 obj = {}。

在项目中的任何时候,它都可以通过导入访问并且可以更改。我需要知道如何获取对象的最后添加的键?键可以是字符串或数字。

注意:您需要在不使用 Object.keys 和 Object.values 的情况下执行此操作。

javascript
  • 2 个回答
  • 57 Views
Martin Hope
Sire IMPACTUS
Asked: 2022-04-21 03:50:21 +0000 UTC

以正确的顺序从目录中获取文件 | Python

  • 1

我需要从 docx 格式的文件夹中获取所有文件。我这样做:

glob.glob("/home/adam/*docx")

关键是我的文件格式为 Name 1.docx、Name 2.docx、Name 10.docx、Name 11.docx、Name 12.docx、Name 100.docx。据我了解,任何此类函数都会根据数字的位数对数组进行排序。也就是说,在上面的示例中,它不会给我:

[
    'Name 100.docx',
    'Name 10.docx',
    'Name 11.docx',
    'Name 12.docx',
    'Name 1.docx',
]

如何禁用此功能?我想以与 Windows 中显示的顺序相同的顺序获取列表:“按名称排序。从最小到最大”

python
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2022-08-26 18:05:16 +0000 UTC

如果块的高度为 0,则 UI Sortable 不会移动

  • 3

有几个带有项目的块。我正在尝试释放从一个块到另一个块的项目转移,但是出现了问题。如果其中一个块的高度为 0,则根本无法将元素插入那里。如何解决类似的问题?

这是可排序的代码:

$('.tasks-content-block').sortable({
            connectWith: '.tasks-status-items-block',
            items: '.component-task-item',
            dropOnEmpty: true,
            placeholder: "component-card-task-placeholder"
}).disableSelection();

在此处输入图像描述 在此处输入图像描述

javascript
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2022-03-09 22:25:47 +0000 UTC

乱序传递参数 | JS

  • 0

如何将参数乱序传递给函数?例如,我有一个功能:

func(n_1 = '1', n_2 = '2', n_3 = '3')

每个选项都有一个默认值,所以我不需要更改它们。但是,在某些情况下,我只需要更改一个参数,例如,最后一个参数。重写构造函数中的所有值不是很方便。

问题来了,我可以在js中做这样的事情吗:

func(n_2 = '5')

当我尝试这样做时,我遇到了一个致命错误。

javascript
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2022-02-04 19:27:40 +0000 UTC

有上下文的函数。javascript

  • 0

有一个对象:

const button = {
id: "",
class: "",

instance: function () {
    return Object.assign({}, button);
},
setID(id) {
    this.id = id;
    return this;
},
setClasses(_classes) {
    this.class = _classes;
    return this;
} 
}

我这样称呼:

button.instance()
.setID("button1")
.setClasses("button")

一般来说,一切正常,但有一个问题。我有几个这样的对象,它们的功能是重复的。如何指定函数中的 this 不是对象(按钮),而是我调用它的对象?

我将举一个关于类的例子:有三个类:classOne、classTwo、classMore。所有这些类都有相同的 setTitle() 函数。我没有一次又一次地为所有类指定这个函数,而是决定把它拿出来写一个扩展方法:

<T>.setTitle(String str) {
    ///this в текущем контексте это класс, который я передаю.
    this.title = str;
}

classOne.setTitle("as");
classTwo.setTitle("as2");
classMore.setTitle("as3");

最重要的是,我必须获得与“发送”相同的对象才能继续调用我的函数。用其他语言很容易实现这一点,但是使用 js,甚至使用对象,xs 如何。

相反,如果setID(id) {}我写setID: () => {},那么我设法传递上下文,但它不再返回。也就是说,如果我这样做:

button.instance()
.setID('asda')
.render() //уже другая функция объекта

然后我得到一个错误,他们说渲染函数不存在。据我了解,这是因为它失去了上下文。该怎么办?

javascript
  • 2 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2022-02-03 15:40:21 +0000 UTC

Javascript 中的 Kotlin 函数

  • 0

javascript中应用的类似物是什么?创建了一个对象:

const button = {
title: "",
setTitle(text){
    this.title = text
},
render() {
    return `<a href="#" class="button">
    ${this.title}
  </a>`
},
apply(func){
    return func()
}
};

我打电话:

button.apply(function() {
            this.title = 's';
            this.render();
        })

但他写道,渲染不是一个函数。怎么了?如何实现这样的事情?

javascript
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2022-01-11 01:08:00 +0000 UTC

申请被拒绝 | 谷歌控制台

  • 1

应用程序最近被拒绝,但我不知道为什么。什么是 InAppExperience?它从哪里来的?我在应用程序中没有这样的 png。

在此处输入图像描述

android
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2021-12-31 02:52:38 +0000 UTC

贴在屏幕顶部(将视图固定到 NestedScrollView 的顶部) | 科特林

  • 1

如何让 container_2 在向下滚动时粘在屏幕顶部,如图 2 所示?在图 3 中,结果如何。

在此处输入图像描述 在此处输入图像描述 在此处输入图像描述

xml
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2021-12-03 21:11:39 +0000 UTC

获取脚本变量 | 汤锅 | 科特林

  • 0

解析后得到文本:

var User = new CUser({id: 0, login: 'anonymous'});

var Book = new CBook({
    id: 14470,
    owner_id: 129537,
    facecontrol: 1,
    s_lang: 2,
    t_lang: 1,
    n_verses: 150,
    n_vars: 150,
    d_vars: 150,
    typ: 'A',
    s_title: 'Title',
    t_title: 'Название',
});

如何解析它以获取 s_title、t_title 等?我看到了正则表达式的选项,但什么也没发生。

for(script in scripts){
                if (script.data().contains("s_title")){
                    val p: Pattern = Pattern.compile("(?is)t_title=\"(.+?)\"") // Regex for the value of the key
                    val m: Matcher = p.matcher(script.html())
                    while( m.find() )
                    {
                        Log.i("ParserShell", "${m.group()} = ${m.group(1)}")
                    }
                }
            }

该怎么办?

регулярные-выражения
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2021-10-27 00:38:44 +0000 UTC

Laravel 表的自定义 ID

  • 0

面试时被问到:make an ID - 方法返回的货币的标识符(例如:R01010) 但我什么都不懂。“退货方式”是什么意思?这是如何实施的?

php
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2021-10-11 01:10:20 +0000 UTC

如何将 BackDrop 绑定到屏幕底部?| 底页行为 | 科特林

  • 0

如何将 BottomSheet 锚定到屏幕底部?然后,当我滚动到最底部时,我有一个空白空间。我查看了布局检查器,这是第一个 ConstraintLayout 的错误。

有一个xml片段:

<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/dark">

<androidx.constraintlayout.widget.ConstraintLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <ImageView
        android:id="@+id/image"
        android:layout_width="160dp"
        android:layout_height="220dp"
        android:layout_marginStart="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="8dp"
        android:src="@drawable/ic_placeholder"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/genre"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="8dp"
        android:background="@drawable/marker_v2"
        android:gravity="start|center_horizontal"
        android:paddingLeft="4dp"
        android:paddingRight="4dp"
        android:text="@string/simple_genre"
        android:textColor="@color/white"
        app:fontFamily="@font/oswald"
        app:layout_constraintStart_toEndOf="@+id/image"
        app:layout_constraintTop_toTopOf="parent" />

    <TextView
        android:id="@+id/title"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="8dp"
        android:text="@string/simple_ongoing_title"
        android:textColor="@color/white"
        android:textSize="18sp"
        app:fontFamily="@font/montserrat"
        app:layout_constraintStart_toEndOf="@+id/image"
        app:layout_constraintTop_toBottomOf="@+id/genre" />

    <TextView
        android:id="@+id/author"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_marginStart="8dp"
        android:layout_marginLeft="8dp"
        android:layout_marginTop="8dp"
        android:text="@string/title_notifications"
        android:textColor="@color/sky"
        android:textSize="12sp"
        app:layout_constraintStart_toEndOf="@+id/image"
        app:layout_constraintTop_toBottomOf="@+id/title" />
</androidx.constraintlayout.widget.ConstraintLayout>

<androidx.constraintlayout.widget.ConstraintLayout
    android:id="@+id/contentLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="16dp"
    android:background="@drawable/book_second_layout"
    app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintHorizontal_bias="0.0"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toBottomOf="@+id/image">

    <androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        tools:ignore="MissingConstraints">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="16dp"
            android:background="@drawable/book_second_layout"
            android:orientation="vertical"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.0"
            app:layout_constraintStart_toStartOf="parent"
            tools:ignore="MissingConstraints">

            <androidx.constraintlayout.widget.ConstraintLayout
                android:id="@+id/constraintLayout3"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginStart="8dp"
                android:layout_marginLeft="8dp"
                android:layout_marginTop="4dp"
                android:layout_marginEnd="8dp"
                android:layout_marginRight="8dp"
                app:layout_constraintBottom_toBottomOf="parent"
                app:layout_constraintEnd_toEndOf="parent"
                app:layout_constraintHorizontal_bias="0.0"
                app:layout_constraintStart_toStartOf="parent"
                app:layout_constraintTop_toBottomOf="@+id/imageView5">

                <TextView
                    android:id="@+id/textView25"
                    android:layout_width="0dp"
                    android:layout_height="wrap_content"
                    android:gravity="center_horizontal|left"
                    android:text="@string/Comments"
                    android:textColor="@color/black"
                    android:textSize="18sp"
                    app:fontFamily="@font/oswald"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toTopOf="parent"
                    tools:ignore="RtlHardcoded" />

                <TextView
                    android:id="@+id/textView26"
                    android:layout_width="wrap_content"
                    android:layout_height="0dp"
                    android:drawableRight="@drawable/ic_baseline_arrow_forward_ios_24"
                    android:gravity="center_vertical"
                    android:text="46 Комментариев"
                    android:textSize="10sp"
                    app:fontFamily="@font/montserrat"
                    app:layout_constraintBottom_toTopOf="@+id/commentsRecycler"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintTop_toTopOf="parent"
                    tools:ignore="SmallSp" />

                <androidx.recyclerview.widget.RecyclerView
                    android:id="@+id/commentsRecycler"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="8dp"
                    app:layout_constraintEnd_toEndOf="parent"
                    app:layout_constraintStart_toStartOf="parent"
                    app:layout_constraintTop_toBottomOf="@+id/textView25" />
            </androidx.constraintlayout.widget.ConstraintLayout>
        </LinearLayout>
    </androidx.core.widget.NestedScrollView>
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

这是在代码中:

val contentLayout: ConstraintLayout? = root?.findViewById(R.id.contentLayout)

    val sheetBehavior = contentLayout?.let { BottomSheetBehavior.from(it) }
    sheetBehavior?.isFitToContents = false
    sheetBehavior?.isHideable = false

    sheetBehavior?.state = BottomSheetBehavior.STATE_COLLAPSED

在此处输入图像描述

kotlin
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2020-08-16 22:22:02 +0000 UTC

使用链接查询数据库 | 拉拉维尔

  • -2

如何在 Laravel 中请求获取记录以及链接?假设我们有一张桌子:

ChapterTable
________________________________
id | title | volume | created_at
1  | прив  | 1      | 0000:00...
2  | п112  | 1      | 0000:00...
3  | 3234  | 2      | 0000:00...

VolumeTable
________________________________
id | title | created_at
1  | том 1 | 0000:00...
2  | том 2 | 0000:00...
3  | том 3 | 0000:00...

如何从chapterTable表中获取id = 1 和卷“第 1 卷”而不是“1”的行?

SQL RESULT
________________________________
id | title | volume | created_at
1  | прив  | Том 1  | 0000:00...

chapterTable.volume和volumeTable.id之间的关系已经定义。

Keyname                 Type     Unique Packed  Column  Cardinality  Collation  Null
____________________________________________________________________________________
chapters_volume_foreign |BTREEЭ  |No    |No     |volume |2          |A         |No
php
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2020-08-16 21:57:08 +0000 UTC

如何制作反向循环 | 拉拉维尔

  • 0

如何在刀片中制作反向循环?

我有一个清单:

<li>
    <a href="#" class="title">{{sprintf("%'.04d\n", $loop->iteration)}} {{$chapter->title}}</a>

    <span class="time float-right">{{$chapter->created_at}}</span>
    <a href="#" class="del float-right align-items-center">DELETE</a>
</li>

给我:

0001  Название 0000:00:00 00:00
0002  Название 0000:00:00 00:00
0003  Название 0000:00:00 00:00
0004  Название 0000:00:00 00:00

如何获得:

0004  Название 0000:00:00 00:00
0003  Название 0000:00:00 00:00
0002  Название 0000:00:00 00:00
0001  Название 0000:00:00 00:00

不改变数组的内容。

php
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2020-08-16 20:56:04 +0000 UTC

找不到文件 | 下载文件到磁盘 | PHP | 谷歌云端硬盘 API

  • 0
{
 "error": {
  "errors": [
   {
    "domain": "global",
    "reason": "notFound",
    "message": "File not found: xxxx",
    "locationType": "parameter",
    "location": "fileId"
   }
  ],
  "code": 404,
  "message": "File not found: xxxx"
 }
}

有一个要求:

$service = new Google_Service_Drive($google);

    $postBody = new Google_Service_Drive_DriveFile([
        'name' => $fileOpt['fileName'],
        'parents' => array(self::$FOLDER_ID)
    ]);

    $content = $service->files->create($postBody, [
        'data' => $fileOpt['data'],
        'mimeType' => 'application/json',
        'uploadType' => 'media'
    ]);

    return $content;

我允许:

https://www.googleapis.com/auth/drive.appdata
https://www.googleapis.com/auth/drive.metadata
https://www.googleapis.com/auth/drive
https://www.googleapis.com/auth/drive.file

那么为什么 GoogleApi看不到我要上传文件的文件夹呢?我通过 Google API Explorer提出了同样的请求,它可以工作!

请求正文浏览器 API:

"parents": [
    "xxxx"
  ],
  "name": "EXAMPLE_FILE_1",
  "mimeType": "application/json",
  "description": "This is a json file."

所需权限:

https://www.googleapis.com/auth/drive
https://www.googleapis.com/auth/drive.appdata
https://www.googleapis.com/auth/drive.file

我很困惑。帮助!

php
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2020-08-02 23:24:36 +0000 UTC

PHP | preg_match_all 说明

  • -1

有一个规律:

/[\p{L}-—]+(?:\h[\p{L}-—]+)*(?=,)?/m

在网站上检查:https ://regex101.com/r/ojQ1Hy/3

问题是 Laravel,或者更确切地说是 php,给了我一个拼写出来的答案,尽管在网站上它给出了words。我究竟做错了什么?

$re = '/[\p{L}-—]+(?:\h[\p{L}-—]+)*(?=,)?/m';
$str = 'гендерная интрига, драма, история, комедия, повседневность, приключения, психология, романтика, сёнэн-ай, яой';

preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0);
var_dump($matches);

结果:

[0]=>
  array(1) {
    [0]=>
    string(1) "�"
  }
  [1]=>
  array(1) {
    [0]=>
    string(3) "е�"
  }
  [2]=>
  array(1) {
    [0]=>
    string(1) "�"
  }
  [3]=>
  array(1) {
    [0]=>
    string(5) "ер�"
  }
  [4]=>
  array(1) {
    [0]=>
    string(1) "�"
  }
  ...
php
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2020-08-02 20:00:02 +0000 UTC

PHP | 常规战斗

  • 0

为我的目的编写正则表达式的正确方法是什么?

我有一条线:

Жанр1, жанр2, жанр3, жанр4

我需要使用正则表达式进行验证。我是这样写的:

[a-zA-Zа-яА-Яё-]+,

一切都会好的,但它只适用于字符串示例。如果您使用真实数据,例如:

第二次机会,在同一个世界,重生,狡猾和欺骗

然后,而不是数组:

[
    'второй шанс'
    'в этот же мир'
    'перерождение'
    'хитрость и обман'
]

我会得到:

[
    'шанс'
    'мир'
    'перерождение'
    'обман'
]

我希望我尽可能清楚地解释我的问题。

UPD:你需要得到一切,除了逗号周围的空格和逗号本身。

php
  • 1 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2020-08-01 22:50:02 +0000 UTC

拉拉维尔 | 在模板中使用 Auth

  • 1

我有一个模板layout.blade.php。它是父级,其中有一个“用户窗口”。它显示他的图像和登录。当我尝试在模板中做时出现问题:

@if(Auth::check())
    <div class="avatar avatar-sm">
        <img src="{{$user->privilege}}"
             class="rounded-circle"
             alt="">
    </div>
@else
    <div class="avatar avatar-sm">
        <img src="/media/unknown-user.png"
             class="rounded-circle"
             alt="">
    </div>
@endif

Auth::check()它只是行不通。如果我AppServiceProvider添加view()->share('check', Auth::check()),那么它给了我false,尽管我在页面/home上,我在其中显示这个用户的数据。

我真的不明白这是什么问题?

laravel
  • 2 个回答
  • 10 Views
Martin Hope
Sire IMPACTUS
Asked: 2020-08-01 19:37:10 +0000 UTC

OneDrive 和父组织

  • 1

我在 Ebay 上买了一个帐户,发现她的母公司列出了一家真正的公司,该公司处理阿尔卑斯山的短途旅行。

问题出现了:使用这样的帐户有多安全?上级组织可以查看、读取、删除我的文件吗?她有多大的权力?

我想用这个帐户作为网站的外部存储,但现在我不确定它是否值得。毕竟,如果这个组织看到我留下的文件并删除它们,那么网站上的内容可能会丢失,这不是很好。

microsoft
  • 1 个回答
  • 10 Views

Sidebar

Stats

  • 问题 10021
  • Answers 30001
  • 最佳答案 8000
  • 用户 6900
  • 常问
  • 回答
  • Marko Smith

    我看不懂措辞

    • 1 个回答
  • Marko Smith

    请求的模块“del”不提供名为“default”的导出

    • 3 个回答
  • Marko Smith

    "!+tab" 在 HTML 的 vs 代码中不起作用

    • 5 个回答
  • Marko Smith

    我正在尝试解决“猜词”的问题。Python

    • 2 个回答
  • Marko Smith

    可以使用哪些命令将当前指针移动到指定的提交而不更改工作目录中的文件?

    • 1 个回答
  • Marko Smith

    Python解析野莓

    • 1 个回答
  • Marko Smith

    问题:“警告:检查最新版本的 pip 时出错。”

    • 2 个回答
  • Marko Smith

    帮助编写一个用值填充变量的循环。解决这个问题

    • 2 个回答
  • Marko Smith

    尽管依赖数组为空,但在渲染上调用了 2 次 useEffect

    • 2 个回答
  • Marko Smith

    数据不通过 Telegram.WebApp.sendData 发送

    • 1 个回答
  • Martin Hope
    Alexandr_TT 2020年新年大赛! 2020-12-20 18:20:21 +0000 UTC
  • Martin Hope
    Alexandr_TT 圣诞树动画 2020-12-23 00:38:08 +0000 UTC
  • Martin Hope
    Air 究竟是什么标识了网站访问者? 2020-11-03 15:49:20 +0000 UTC
  • Martin Hope
    Qwertiy 号码显示 9223372036854775807 2020-07-11 18:16:49 +0000 UTC
  • Martin Hope
    user216109 如何为黑客设下陷阱,或充分击退攻击? 2020-05-10 02:22:52 +0000 UTC
  • Martin Hope
    Qwertiy 并变成3个无穷大 2020-11-06 07:15:57 +0000 UTC
  • Martin Hope
    koks_rs 什么是样板代码? 2020-10-27 15:43:19 +0000 UTC
  • Martin Hope
    Sirop4ik 向 git 提交发布的正确方法是什么? 2020-10-05 00:02:00 +0000 UTC
  • Martin Hope
    faoxis 为什么在这么多示例中函数都称为 foo? 2020-08-15 04:42:49 +0000 UTC
  • Martin Hope
    Pavel Mayorov 如何从事件或回调函数中返回值?或者至少等他们完成。 2020-08-11 16:49:28 +0000 UTC

热门标签

javascript python java php c# c++ html android jquery mysql

Explore

  • 主页
  • 问题
    • 热门问题
    • 最新问题
  • 标签
  • 帮助

Footer

RError.com

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

帮助

© 2023 RError.com All Rights Reserve   沪ICP备12040472号-5