RError.com

RError.com Logo RError.com Logo

RError.com Navigation

  • 主页

Mobile menu

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

Reiji Akkerman's questions

Martin Hope
Reiji Akkerman
Asked: 2024-11-17 01:00:50 +0000 UTC

JS 中 goto 的类似物

  • 6

我正在编写一个函数,用于确定在 5 个相同类型的特定按钮上运行哪些功能(它们具有相同的工作空间,但操作方式不同)。一般来说,如果我用 C 或 PHP 编写,goto我会使用这样的东西。

activate() {
        if(MainActions.#stack.peek() !== this.dataset.action_type)
            MainActions.#close_main_action();
        switch(this.dataset.action_type) {
            case 'sync-with-github':
                break;
            case 'split-list':
                MainActions.#split_list_activate();
                goto function_end;
                break;
            case 'combine-lists':
                MainActions.#combine_lists_activate();
                goto function_end;
                break;
            case 'create-new-list':
                MainActions.#create_new_list_activate();
                goto function_end;
                break;
            case 'close-editing':
                MainActions.#close_main_action();
                MainActions.#close_main_action_hide_button();
                break;
        }
        return;
        function_end:
        MainActions.#stack.push(this.dataset.action_type);
        MainActions.#close_main_action_show_button();
    }

正如您从代码中看到的,我想将仅按某些按钮收到的数据添加到堆栈中。我实在不想每一篇都写同样的内容case。当然,您可以使用后面的内容创建一个单独的方法function_end,并将其连接到您需要的每个方法case,但是用一个对该类没有意义的方法填充一个类(是的,它只对方法有意义activate,对全班)也很丑。

问:JS中可以用什么替换来解决这种情况?goto

javascript
  • 2 个回答
  • 38 Views
Martin Hope
Reiji Akkerman
Asked: 2024-04-28 01:42:59 +0000 UTC

如何从租用的主机向您的电子邮件发送消息?

  • 6

我有一个带有邮件域的主机,mail.aniproject.ru这是它的设置在此输入图像描述

这是我尝试发送电子邮件的代码

<?php
    namespace project;

    use PHPMailer\PHPMailer\PHPMailer;
    use PHPMailer\PHPMailer\SMTP;

    require __DIR__ . '/../vendor/autoload.php';

    $mail = new PHPMailer();

    $mail->isSMTP();
    $mail->SMTPDebug = SMTP::DEBUG_SERVER;
    $mail->Host = 'mail.aniproject.ru';
    $mail->Port = 465;
    $mail->SMTPSecure = PHPMailer::ENCRYPTION_SMTPS;
    $mail->SMTPAuth = true;
    $mail->Username = '[email protected]';
    $mail->Password = 'password';

    $mail->setFrom('[email protected]', 'First Last');
    $mail->addAddress('[email protected]', 'John Doe');
    $mail->Subject = 'Проверка работы почты хостинга';
    $mail->Body = 'Привет Рей';

    if (!$mail->send()) {
        echo 'Mailer Error: ' . $mail->ErrorInfo;
    } else {
        echo 'Message sent!';
    }

SSL 处理也已启用

在此输入图像描述

这是我尝试运行脚本时得到的结果

2024-04-27 19:37:12     SMTP ERROR: Failed to connect to server:  (0)
2024-04-27 19:37:12     SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting
Mailer Error: SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/TroubleshootingSMTP server error: Failed to connect to server

需要做什么才能发送消息?

php
  • 1 个回答
  • 61 Views
Martin Hope
Reiji Akkerman
Asked: 2024-02-28 01:53:35 +0000 UTC

为什么没有定义常量?

  • 4

有这么一段代码

<?php
    class Calendar {
        public \DateTimeImmutable $start;
        public \DateTimeImmutable $now;
        public \DateTimeImmutable $end;
        public \DateInterval $calendarInterval;
        public \DateInterval $dayInterval;
        public \DatePeriod $period;

        public function __construct() {
            $this->now = new \DateTimeImmutable();
            $this->calendarInterval = new \DateInterval('P1D');
            $this->dayInterval = new \DateInterval('P1D');
        }

        public function compareObjects(): void {
            $this->start = $this->now->sub($this->calendarInterval);
            $this->end = $this->now->add($this->calendarInterval);
            $this->period = new \DatePeriod($this->start, $this->dayInterval, $this->end, \DatePeriod::INCLUDE_END_DATE);
        }
    }

    $obj = new Calendar();
    $obj->compareObjects();
    foreach($obj->period as $day) {
        echo $day->format('d.m.o l') . "\n";
        echo var_dump($obj->now == $day);
    }

当我使用常量时\DatePeriod::INCLUDE_END_DATE出现错误

PHP Fatal error:  Uncaught Error: Undefined constant DatePeriod::INCLUDE_END_DATE in /var/www/native/src/test.php:19
Stack trace:
#0 /var/www/native/src/test.php(24): Calendar->compareObjects()
#1 {main}
  thrown in /var/www/native/src/test.php on line 19

当我使用\DatePeriod::EXCLUDE_START_DATE同一个类的常量时,一切正常。结论如下

27.02.2024 Tuesday
/var/www/native/src/test.php:27:
bool(true)

我在文档中没有找到有关过时常量的任何信息。

为什么???

php
  • 1 个回答
  • 27 Views
Martin Hope
Reiji Akkerman
Asked: 2024-01-09 00:59:32 +0000 UTC

如何正确地将用户分配到组?

  • 5

我创建了一个用户testuser,然后创建了一个文件夹test_folder。我工作的用户是reiji. 我将用户添加reiji到组中testuser。该文件夹test_folder已被拥有testuser:testuser并具有权限750。问题是,即使我将用户添加reiji到组中testuser,该用户reiji仍然无法查看该文件夹test_folder。

问: 为什么?

根据评论进行修改

  1. sudo useradd testuser

  2. sudo usermod -a -G testuser reiji

  3. reiji : reiji adm cdrom sudo dip www-data plugdev lpadmin lxd sambashare testuser

total 12
drwxr-x--- 2 testuser testuser 4096 янв  8 20:16 .
drwxr-xr-x 6 reiji    reiji    4096 янв  8 20:10 ..
-rw-r--r-- 1 root     root        6 янв  8 20:16 hello.find
  1. bash: cd: test_folder/: Permission denied
linux
  • 1 个回答
  • 58 Views
Martin Hope
Reiji Akkerman
Asked: 2023-11-15 04:19:26 +0000 UTC

如何撤消前面函数的行为?

  • 5

我的html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <link rel="stylesheet" href="style.css">
    </head>
    <body>
        <div class="container">
            <div class="element">
                <button>кнопка</button>
            </div>
        </div>
        <script src="test.js"></script>
    </body>
</html>

CSS

.container {
    padding: 20px;
    border: 1px #000 solid;
}

.element {
    padding: 20px;
    border: 1px #000 solid;
}

js

function container() {
    let element = document.querySelector('.container');
    let insertion = document.createElement('p');
    insertion.append('сработала функция container()');
    element.append(insertion);
}

function element() {
    let element = document.querySelector('.element');
    let insertion = document.createElement('p');
    insertion.append('сработала функция element() при нажатии на кнопку');
    element.append(insertion);
}

document.addEventListener('DOMContentLoaded', function() {
    document.querySelector('.container').addEventListener('click', container);
    document.querySelector('.element button').addEventListener('click', element);
})

如何才能使.container单击按钮时元素不触发?

javascript
  • 1 个回答
  • 16 Views
Martin Hope
Reiji Akkerman
Asked: 2023-11-07 02:10:57 +0000 UTC

这使用 addEventListener [重复]

  • 5
这个问题已经在这里得到回答:
丢失呼叫上下文 (5 个回答)
昨天关门了。

它是这样alert工作的:

class Test {
    #shown;

    constructor() {
        this.#shown = 'hello';
        this.showMessage.bind(this);
    }

    showMessage() {
        alert(this.#shown);
    }
}

var test = new Test;
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
    </head>
    <body>
        <div class="container">
            <button class="element" onclick="test.showMessage();">кнопка</button>
        </div>
        <script src="test.js"></script>
    </body>
</html>

但alert它不是这样工作的:

class Test {
    #shown;

    constructor() {
        this.#shown = 'hello';
        this.showMessage.bind(this);
    }

    showMessage() {
        alert(this.#shown);
    }
}

var test = new Test;

document.addEventListener('DOMContentLoaded', function() {
    let element = this.querySelector('.element');
    element.addEventListener('click', test.showMessage);
})
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
    </head>
    <body>
        <div class="container">
            <button class="element">кнопка</button>
        </div>
        <script src="test.js"></script>
    </body>
</html>

为什么alert() 在第二种情况下不起作用,如果在这两种情况下我将事件绑定到同一个元素,并且在这两种情况下我都使用bind() 以便它始终在Test 类的上下文中?

javascript
  • 1 个回答
  • 34 Views
Martin Hope
Reiji Akkerman
Asked: 2023-10-24 10:25:48 +0000 UTC

为什么css属性不生效?

  • 5

如果两个选项都导致相同的元素,为什么“h1”元素出现在第一个选项中,而不是第二个选项中?

html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <link rel="stylesheet" href="position.css">
        <link rel="stylesheet" href="js_position.css">
    </head>
    <body>
        <div class="div">
            <h1 class="cont">I'm position</h1>
        </div>
    </body>
</html>

选项1

位置.css

.div > h1 {
    display: block;
}

js_position.css

.cont {
    display: none;
}

选项2

位置.css

.cont {
    display: block;
}

js_position.css

.cont {
    display: none;
}
html
  • 1 个回答
  • 51 Views
Martin Hope
Reiji Akkerman
Asked: 2023-10-16 21:00:29 +0000 UTC

如何在重新加载页面时删除“确认表单重新提交”消息

  • 5

我正在编写一个网站,当我登录时,我会进入主页:

在此输入图像描述

但是,重新启动时,会弹出“确认表单重新提交”消息。

在此输入图像描述

例如,当您登录VK后立即重新加载页面时,不会弹出这样的消息。

告诉我,我该怎么做才能防止页面在重新加载时要求我重新发送表单?

如果实施细节很重要,请参见此处

javascript
  • 1 个回答
  • 30 Views
Martin Hope
Reiji Akkerman
Asked: 2023-10-13 10:30:41 +0000 UTC

如何禁止客户端访问服务器上的文件?

  • 5
比赛还有3天就结束了。回答这个问题,可能会获得 +50声望点的奖励。Reiji Akkerman想要一个规范的答案。

当我的.htaccess文件有这个内容时

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.+)$ index.php [QSA,L]

我可以通过浏览器轻松查看服务器上的文件。这是非常不可取的。

我的-file什么时候.htaccess有这样的内容?

RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !f
RewriteRule ^(.+)$ index.php [QSA,L]

我无法再查看这些文件,但该网站无法加载css样式。

如何禁用客户端对服务器文件的访问,以便站点本身不会受到此影响?

可能有用(站点配置)

<VirtualHost 127.0.0.2:80>

        ServerAdmin webmaster@localhost
        DocumentRoot /home/reiji/Documents/native_project

        <Directory /home/reiji/Documents/native_project>
                AllowOverride All
                Require all granted
        </Directory>

        ErrorLog ${APACHE_LOG_DIR}/error.log
        CustomLog ${APACHE_LOG_DIR}/access.log combined

</VirtualHost>

网站链接(如果详细信息派上用场)

apache
  • 1 个回答
  • 4 Views
Martin Hope
Reiji Akkerman
Asked: 2023-03-01 21:39:09 +0000 UTC

main() 函数的参数

  • 5

直到今天,我都是这样用main:函数写C程序的int main(void)。但是今天我决定扩大一下自己的视野,写了下面这个函数:int main(int argc, char* argv[]). 在这里,根据我减去它的文章的参数转移按预期工作。

如果我尝试分别传递每个参数,我决定检查程序将如何工作。这是发生了什么:

我的代码:

#include <stdio.h>

int main(int argc, char* first_arg, char* name, char* name1) {
    printf("Argument:\n%s\n%s\n%s", first_arg ,name, name);
    return 0;
}

每次通话的结果./start.out некоторая строка здесь:

Argument:
~�&{�
��&{�
��&{�

现在它与参数数组相同。

我的代码:

#include <stdio.h>

int main(int argc, char* first_arg[1], char* name[1], char* name1[1]) {
    printf("Argument:\n%s\n%s\n%s", first_arg[1] ,name[1], name[1]);
    return 0;
}

每次通话的结果./start.out некоторая строка здесь:

Argument:
некоторая
SESSION_MANAGER=local/reiji-Legion-5-15IMH6:@/tmp/.ICE-unix/2497,unix/reiji-Legion-5-15IMH6:/tmp/.ICE-unix/2497
SESSION_MANAGER=local/reiji-Legion-5-15IMH6:@/tmp/.ICE-unix/2497,unix/reiji-Legion-5-15IMH6:/tmp/.ICE-unix/2497

为什么格式中的程序可以char* argv[]正确接受参数,但如果我将接受参数分为两个独立的类型变量char* argv1和char* argv2- 那么我将不会收到任何参数?

它来自哪里SESSION_MANAGER=local/reiji-Legion-5-15IMH6:@/tmp/.ICE-unix/2497,unix/reiji-Legion-5-15IMH6:/tmp/.ICE-unix/2497,它是关于什么的?

如何调试这种程序——毕竟,调试器运行的是不带参数的被调试程序?

linux
  • 1 个回答
  • 29 Views
Martin Hope
Reiji Akkerman
Asked: 2023-02-11 15:01:53 +0000 UTC

为什么在POST请求后产生GET请求?

  • 6

我不明白为什么在成功处理POST请求后会创建一个请求GET。

网页格式

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
    </head>
    <body>
        <form>
            <input type="text" name="header">
            <textarea name="description"></textarea>
            <button onclick="_send_entry()">submit</button>
        </form>
        <script src="../../test.js"></script>
    </body>
</html>

js

function _send_entry() {
    let xhr = new XMLHttpRequest();
    xhr.open('POST', '/test');
    xhr.send();
    xhr.onload = function() {
        if(xhr.status != 200)
            alert(`error - ${xhr.status}`);
        else
            alert(`получено байт - ${xhr.response.length}`);
    };
}

PHP

case 'test':
    echo "hello";
    break;

输入

在此处输入图像描述

回答

在此处输入图像描述

结论

在此处输入图像描述

提交表单后,页面将重新加载。我该怎么做才能不形成 GET 请求并且不重新加载页面?

javascript
  • 1 个回答
  • 20 Views
Martin Hope
Reiji Akkerman
Asked: 2023-01-31 02:07:26 +0000 UTC

为什么 git 拒绝推送提交?

  • 6

最初只使用它自己的存储库,但现在有必要使用第三方存储库 - 我在本地注册了以下命令:

git config --local user.name "somebody10000"
git config --local user.email airewright.ru@gmail.com
git branch -M main

当我运行命令时git push -u airewright.ru main,我得到以下输出:

remote: Permission to somebody10000/airewright.ru.git denied to ReijiAkkerman.
fatal: unable to access 'https://github.com/somebody10000/airewright.ru.git/': The requested URL returned error: 403

而命令git add .和git commit -m "1"- 已成功执行

这是命令输出的内容git config -l --show-scope:

global  user.name=ReijiAkkerman
global  user.email=reijiakkerman@gmail.com
global  safe.directory=/var/www/haruproject.space
global  safe.directory=/var/www/html
local   core.repositoryformatversion=0
local   core.filemode=true
local   core.bare=false
local   core.logallrefupdates=true
local   remote.airewright.ru.url=https://github.com/somebody10000/airewright.ru.git
local   remote.airewright.ru.fetch=+refs/heads/*:refs/remotes/airewright.ru/*
local   user.name=somebody10000
local   user.email=airewright.ru@gmail.com

我不明白我破坏了什么,上次推送提交没有问题。提前致谢)

git
  • 1 个回答
  • 45 Views
Martin Hope
Reiji Akkerman
Asked: 2023-01-09 01:31:06 +0000 UTC

如何将数据上传到站点使其不显示在页面上?

  • 5

在此处输入图像描述我正在学习写网站,现在我在做计划页面。

问题如下 - 在所附照片上,如您所见,有 2 个主要块(日历和一个块,其中更详细地说明了当天的任务)。我想最初从数据库传输数据以及加载 html 页面,只是将那些应该只在特定时刻出现的元素标记为display: none;- 因为它们不应该被看到。所有项目都保存到日​​历中。而在左侧照片中的当天区块中,它们是使用 JS 简单复制的。

以这种方式处理数据对我来说似乎是一种非常错误的方式。告诉我如何以及在哪里可以存储从数据库接收到的数据,这样就可以在不使用 JS 重新加载页面的情况下对其进行操作。一般来说,我怎样才能在不重新加载的情况下从数据库中传输数据???

后端是用 PHP 编写的。原生 HTML、CSS、JS 前端

javascript
  • 1 个回答
  • 48 Views
Martin Hope
Reiji Akkerman
Asked: 2022-11-29 01:58:31 +0000 UTC

为什么将结构写入文件时,第一个值总是占用 4 个字节?

  • 5

尝试使用 BMP 图像。在逐字节写入图片本身的值之前,我决定先以二进制形式写入标题,无论我为init结构中的变量选择什么数据类型BMP_header- 变量都遇到了这样的问题反正valuesinit都是4字节写的。

这是BMP图像的结构global.h

typedef struct {
    short int init;
    int file_size;
    int unusable_values;
    int header_size
} BMP_header;

typedef struct {
    int dib_header_size;
    int width;
    int height;
    short int color_plane
    short int bits_per_pixel;
    int compression;
    int image_contents_size;
    int horisontal_resolution;
    int vertical_resolution;
    int unusable_var1;
    int unusable_var2;
} DIB_header;

typedef struct {
    BMP_header bmp_header;
    DIB_header dib_header;
} BMP;

这是我用来编写文件的代码

#include <stdio.h>
#include <stdlib.h>

#include "Manipulation/Global/headers/global.h"

void image(int width, int height, int values_array[]);

int main(void) {
    int color = 0x00ffffff;
    int height = 4;
    int width = 4;
    int values_array[width * height];
    for(int i = 0; i < width * height; i++)
        values_array[i] = color;
    image(width, height, values_array);
}

void image(int width, int height, int values_array[]) {
    BMP image = {
        0x4d42, 
        (width * height * 4) + 54,
        0x00000000, 
        0x00000036,
        0x00000028, 
        width, 
        height, 
        0x0001, 
        0x0018, 
        0x00000000, 
        width * height * 4, 
        0x00000ec4, 
        0x00000ec4, 
        0x00000000, 
        0x00000000
    };
    BMP *p_image = &image;

    FILE *fp;
    if((fp = fopen("image.bmp", "w")) == NULL) {
        perror("Ошибка создания файла\n");
        exit(0);
    }
    fwrite(p_image, sizeof(image), 1, fp);
    fclose(fp);
}

这是我最终得到的

42 4D 00 00 76 00 00 00 00 00 00 00 36 00 00 00
28 00 00 00 04 00 00 00 04 00 00 00 01 00 18 00
00 00 00 00 40 00 00 00 C4 0E 00 00 C4 0E 00 00
00 00 00 00 00 00 00 00

这就是我期望得到的

42 4D 76 00 00 00 00 00 00 00 36 00 00 00 28 00
00 00 04 00 00 00 04 00 00 00 01 00 18 00 00 00
00 00 40 00 00 00 C4 0E 00 00 C4 0E 00 00 00 00
00 00 00 00 00 00

问题:为什么无论变量的类型如何,后面的最开始都多了42 4D2个字节?00 00init

c
  • 1 个回答
  • 43 Views
Martin Hope
Reiji Akkerman
Asked: 2022-02-25 06:23:01 +0000 UTC

为什么当使用条目“a”将数组的地址增加 11 时,它增加了 44?而不是写“a[0]”和“a[0][0]”时所需的11?

  • 0

我最近开始学习C,课程代码如下

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
int a[3][4] = { {1, 2, 3, 4} , {5, 6, 7, 8}, {9, 10, 11, 12}};
int n = sizeof(a)/sizeof(a[0]);         // число строк
int m = sizeof(a[0])/sizeof(a[0][0]);   // число столбцов
 
int *final = a[0] + n*m - 1;    // указатель на самый последний элемент
for(int *ptr=a[0], i=1; ptr<=final; ptr++, i++)
{
    printf("%d \t", *ptr);
    // если остаток от целочисленного деления равен 0,
    // переходим на новую строку
    if(i%m==0)
    {
        printf("\n");
    }
}   
return 0;
}

它在这里说

int *final = a[0] + n*m - 1;

这意味着最终指针必须获得二维数组的最后一个元素的地址,所以它发生了。但是我决定检查它是否适用于在指针中指定数组地址的所有方式——嗯,就是这样。

  • 一个;
  • 一个[0];
  • &a[0][0];

最后两个问题没有问题,它们根据下面的代码将地址增加了 11 - 应该是这样,但在第一个版本中,地址全部增加了 44,这在理论上不应该。问题是为什么会发生这种情况,更有趣的是如何?如果它们都以相同的地址开头。

#include <stdio.h>

int main(void)
{

int a[3][4] = { {1, 2, 3, 4} , {5, 6, 7, 8}, {9, 10, 11, 12} };
int n = sizeof(a) / sizeof(a[0]);         
int m = sizeof(a[0]) / sizeof(a[0][0]);

printf("size of a = %d\n", sizeof(a));
printf("size of a[0] = %d\n", sizeof(a[0]));
printf("size of a[0][0] = %d\n", sizeof(a[0][0]));

printf("n = %d m = %d\n\n\n", n, m);

printf("address a = %p\n", a);                      //адрес первого элемента массива
printf("address a[0] = %p\n", a[0]);                //адрес первого элемента массива
printf("address a[0][0] = %p\n\n\n", &a[0][0]);     //адрес первого элемента массива

int* fin = a + n * m - 1;                           //(увеличивается не на 11 адресов а на 44 хотя начальный адрес у всех одинаковый)
int* fin1 = a[0] + n * m - 1;                       //адрес последнего элемента массива
int* fin2 = &a[0][0] + n * m - 1;                   //адрес последнего элемента массива

printf("fin: address %p \t value %d\n", fin, *fin);             //(увеличивается не на 11 адресов а на 44 хотя начальный адрес у всех одинаковый)
printf("fin1: address %p \t value %d\n", fin1, *fin1);          //адрес последнего элемента массива
printf("fin2: address %p \t value %d\n\n\n", fin2, *fin2);      //адрес последнего элемента массива

int* ptrd = a;
int diff = fin - ptrd;
printf("fin - ptrd = %d\n\n\n", diff);

for (int* ptr = a[0], i = 1; ptr <= fin2; ptr++, i++)
{
    printf("i = %d   ptr = %p   %d   ", i, ptr, *ptr);
    
    if (i % m == 0)
    {
        printf("\n");
    }
}

printf("\n\n");

for (int* ptr = a[0], i = 1; ptr <= fin; ptr++, i++)
{
    printf("i = %d   ptr = %p   %d   ", i,  ptr, *ptr);

    if (i % m == 0)
    {
        printf("\n");
    }
}

printf("\n\n\n");
return 0;
}
c
  • 2 个回答
  • 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