backend 相关问题

定义应用程序逻辑分隔中的组件。

Strapi 导入错误:“@strapi/permissions”不包含默认导出

我在使用 Strapi 时遇到导入错误。当尝试在我的项目中导入“@strapi/permissions”模块时,特别是在位于 ./Strapi Backends/

回答 1 投票 0

如何将带有连接的 linq 查询转换为方法语法?

我想将其更改为c#中的lambda查询 var innerJoinTasinmaz = 来自 _context.Tasinmaz 中的 tasin 在 tasin 上加入 _context.Mahalle 中的 mahalle。MahalleID 等于 mahalle。

回答 1 投票 0

减小/增大屏幕尺寸时可绘制窗口无法到达屏幕最右侧的问题

#酒吧 { 位置:固定; /* 固定位置以在滚动时保持在适当的位置 */ 顶部:0; 底部:0; 左:0; 宽度:3px; /* 条形的初始宽度 */ 背景色...</desc> <question vote="0"> <pre><code>&lt;html&gt; &lt;style&gt; #bar { position: fixed; /* Fixed position to stay in place on scroll */ top: 0; bottom: 0; left: 0; width: 3px; /* Initial width of the bar */ background-color: #f1f1f1; /* Background of the bar */ border-right: 1px solid #d3d3d3; /* Border of the bar */ z-index: 9; } #handle { width: 100px; /* Diameter of the handle circle */ height: 100px; /* Height of the handle circle */ background-color: #2196F3; border-radius: 50%; /* Make it round */ position: absolute; /* Absolute position within the bar div */ top: 50%; /* Center it vertically */ right: -3.125em; /* Align to the right of the bar */ transform: translateY(-50%); /* Adjust vertical position */ cursor: pointer; /* Change cursor to indicate it&#39;s draggable */ z-index: 10; clip-path: inset(0 0 0 50%); /* Clip left half of the circle */ background-image: url(&#39;https://i.gifer.com/2P5x.gif&#39;); background-repeat: no-repeat; background-size: 90% 100%; /* Width and height values */ background-position: calc(100% + 0.625em) center; /* Move the image to the right by 10 pixels from the edge */ } #handle.blue-bg { background-image: url(&#39;https://virtualisedreality.files.wordpress.com/2012/07/the-best-top-desktop-blue-wallpapers-blue-wallpaper-blue-background-hd-33.jpg&#39;); background-position-x: right; } &lt;/style&gt; &lt;body&gt; &lt;div id=&#34;bar&#34;&gt; &lt;!-- This is the draggable handle --&gt; &lt;div id=&#34;handle&#34;&gt;&lt;/div&gt; &lt;/div&gt; &lt;script&gt; // Make the handle draggable dragElement(document.getElementById(&#34;handle&#34;)); function dragElement(elmnt) { var startPosX = 0, currentPosX = 0; var maxBarWidth = window.innerWidth - (elmnt.offsetWidth / 16); // Tarayıcı penceresinin genişliğini kullanma , Set the maximum width for the bar. elmnt.onmousedown = dragMouseDown; function dragMouseDown(e) { e = e || window.event; e.preventDefault(); startPosX = e.clientX; document.onmouseup = closeDragElement; document.onmousemove = elementDrag; } function elementDrag(e) { e = e || window.event; e.preventDefault(); currentPosX = e.clientX - startPosX; startPosX = e.clientX; var bar = document.getElementById(&#34;bar&#34;); var newWidth = bar.clientWidth + currentPosX; //console.log(`newWidth = ${bar.clientWidth} + ${currentPosX} = ${newWidth}`) // Define the minimum width to keep the handle from entering the bar area var minBarWidth = 3; // This is the initial width of the bar // Restrict the width within the minimum and maximum bounds newWidth = Math.max(minBarWidth, Math.min(newWidth, maxBarWidth)); // Set the new width bar.style.width = newWidth + &#34;px&#34;; var handle = document.getElementById(&#34;handle&#34;); // Adding or removing the &#39;blue-bg&#39; class based on the handle&#39;s position if (newWidth &gt;= maxBarWidth) { handle.classList.add(&#39;blue-bg&#39;); } else { handle.classList.remove(&#39;blue-bg&#39;); } } function closeDragElement() { // stop moving when mouse button is released: document.onmouseup = null; document.onmousemove = null; } } &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>您好,当我缩小屏幕尺寸(比如90%、100%)时,向右拖动的窗口无法到达屏幕右下角。它可以到达屏幕的中间点等区域。 简而言之,如何确保在所有情况下,无论屏幕放大还是缩小,可绘制窗口都能到达屏幕的最右侧?这个问题有什么办法解决吗?</p> <p><em><strong>问题:</strong></em></p> <p><a href="https://i.stack.imgur.com/GUliM.png" target="_blank"><img src="https://cdn.txt58.com/i/AWkuc3RhY2suaW1ndXIuY29tL0dVbGlNLnBuZw==" alt=""/></a></p> <p><em><strong>即使放大或缩小,当您将手柄拉至最右侧时,在任何情况下都希望出现的视图:</strong></em></p> <p><a href="https://i.stack.imgur.com/SfkXN.png" target="_blank"><img src="https://cdn.txt58.com/i/AWkuc3RhY2suaW1ndXIuY29tL1Nma1hOLnBuZw==" alt=""/></a></p> </question> <answer tick="false" vote="0"> <p>这里的问题是,当您调整窗口大小时,您没有获得更新的窗口宽度。因此,要解决这个问题,就是在调整窗口大小时再次调用dragElement</p> <pre><code>// Make the handle draggable dragElement(document.getElementById(&#34;handle&#34;)); window.addEventListener(&#34;resize&#34;, function() { // call again the function if window is resize so it gets the updated window width dragElement(document.getElementById(&#34;handle&#34;)); }); </code></pre> </answer> </body></html>

回答 0 投票 0

TYPO3 BE,编辑记录时在后端添加TCA按钮

有没有办法在BE(TYPO3 10.x.y)中编辑记录时添加一种特殊按钮来执行某些操作?类似于 TCA 输入字段,但它应该是一个“操作”按钮?...

回答 1 投票 0

我可以将录制的前端视频发送到后端并将其存储在我想要的特定文件夹中吗?

我正在使用Flask,我在其中的templates文件夹下编写了html文件。其中我有一个 html 文件,我在其中实现了屏幕录制。 问题是我可以下载vi...

回答 1 投票 0

如何在 Strapi 中创建数组数据类型?

我对 Strapi 和 Next.js 非常陌生,我正在使用 Next 构建博客,对于 CMS,我将使用 Strapi。我创建了一个新的 Post 内容类型并定义了变量,例如

回答 2 投票 0

我正在尝试将 mongo 数据库连接到我的项目,但收到此错误

连接 MongoDB 时出错:MongoServerError:错误的身份验证:身份验证失败 在 Connection.onMessage (C:\Users\HP\OneDrive\Desktop\MERN xpense-tracker_fullstack ackend ode_modules\mongoose\

回答 1 投票 0

我正在尝试连接我的 mongo 数据库,但收到此错误

连接 MongoDB 时出错: 错误:querySrv ENOTFOUND _mongodb._tcp.cluster.pa6uxzr.mongodb.net 在 QueryReqWrap.onresolve [作为未完成] (节点:internal/dns/promises:251:17) { 错误号:未定义...

回答 1 投票 0

节点express中出现ERR_MODULE_NOT_FOUND

我在运行index.js 文件时遇到问题,引发了nodemon。 每当我在终端中运行 nodemon index.js 时,它都会抛出 module_not_found 错误。 我希望错误能够解决并生成 index.js 文件

回答 1 投票 0

“错误”:“无法创建用户:错误:关系\“用户\”违反非空约束

我正在创建 rssagg 应用程序 这是我得到的错误 { “错误”:“无法创建用户:错误:关系“用户”的列“id”中的空值违反了非空

回答 1 投票 0

Django request.user 根本不使用自定义后端

我正在 Django 5.0 中使用自定义用户模型和自定义后端进行编码,以使用电子邮件登录。 这是后端: 类 EmailBackend(ModelBackend): def 验证(自我,请求,用户名=N...

回答 1 投票 0

在 Slim Framework 中通过 PUT 请求更新用户配置文件时出现问题

我正在开展一个学校项目,其中使用 PHP、Slim Framework 和 MySQL 来开发 API。我在尝试通过对 /updateu 的 PUT 请求更新用户配置文件时遇到问题...

回答 1 投票 0

特定路由没有记录时如何获取json错误

我正在尝试构建一个用于发布和插入数据的API。因此我可以将数据发布到发布端点,从数据库获取所有数据,并使用 id 从特定行获取特定数据。我

回答 1 投票 0

我在使用 Google Cloud 功能时遇到问题 - 出现 ECONNRESET 错误

我创建了一个函数,它接受存储在 Firebase 存储中的图像的 URL 字符串数组,该函数成功地适用于总下载量小于 1GB 的实例。

回答 1 投票 0

为什么 Flask 应用重新加载后没有更新浏览?

我是烧瓶初学者,我在更新模板时遇到问题 当我第一次运行应用程序 Flask run 时,它当前可以工作,但是当我更新 html 或 python 代码然后重新加载时...

回答 2 投票 0

我应该选择什么:Django 还是 Node.js? [已关闭]

我是一名独立开发人员,已经从事了一年的自由职业,现在我有一个与 CRM 相关的项目,我将在团队中工作。我的一位团队成员说,让我们使用 Django,然后...

回答 1 投票 0

Spring Rest 控制器为 POST 请求返回 302(已找到),但没有任何反应

我是后端开发和 Spring Boot 的初学者,目前正在开发一个项目,以更好地熟悉基础知识。我正在编写一个简单的 UI 用于用户身份验证和注册...

回答 1 投票 0

加载API定义失败。错误 隐藏获取错误 内部服务器错误 /openapi.json

我是使用 FastApi 的新手。我正在尝试编写第一个程序来请求数据模型。当我在地址后写入 /docs 时,我不断遇到问题。 这是我的代码 从打字...

回答 1 投票 0

可拖动半圆无法进入栏内的问题

#酒吧 { 位置:固定; /* 固定位置以在滚动时保持在适当的位置 */ 顶部:0; 底部:0; 左:0; 宽度:3px; /* 条形的初始宽度 */ 背景色...</desc> <question vote="0"> <pre><code>&lt;html&gt; &lt;style&gt; #bar { position: fixed; /* Fixed position to stay in place on scroll */ top: 0; bottom: 0; left: 0; width: 3px; /* Initial width of the bar */ background-color: #f1f1f1; /* Background of the bar */ border-right: 1px solid #d3d3d3; /* Border of the bar */ z-index: 9; } #handle { width: 100px; /* Diameter of the handle circle */ height: 100px; /* Height of the handle circle */ background-color: #2196F3; border-radius: 50%; /* Make it round */ position: absolute; /* Absolute position within the bar div */ top: 50%; /* Center it vertically */ right: -50px; /* Align to the right of the bar */ transform: translateY(-50%); /* Adjust vertical position */ cursor: pointer; /* Change cursor to indicate it&#39;s draggable */ z-index: 10; clip-path: inset(0 0 0 50%); /* Clip left half of the circle */ } &lt;/style&gt; &lt;body&gt; &lt;div id=&#34;bar&#34;&gt; &lt;!-- This is the draggable handle --&gt; &lt;div id=&#34;handle&#34;&gt;&lt;/div&gt; &lt;/div&gt; &lt;script&gt; // Make the handle draggable dragElement(document.getElementById(&#34;handle&#34;)); function dragElement(elmnt) { var startPosX = 0, currentPosX = 0; var maxBarWidth = window.innerWidth - (elmnt.offsetWidth /16); // Tarayıcı penceresinin genişliğini kullan , Set the maximum width for the bar. elmnt.onmousedown = dragMouseDown; function dragMouseDown(e) { e = e || window.event; e.preventDefault(); startPosX = e.clientX; document.onmouseup = closeDragElement; document.onmousemove = elementDrag; } function elementDrag(e) { e = e || window.event; e.preventDefault(); currentPosX = e.clientX - startPosX; startPosX = e.clientX; var bar = document.getElementById(&#34;bar&#34;); var newWidth = bar.offsetWidth + currentPosX; // Define the minimum width to keep the handle from entering the bar area var minBarWidth = 3; // This is the initial width of the bar // Define the maximum width as a percentage of the window&#39;s width var maxBarWidth = window.innerWidth- elmnt.offsetWidth / 16; // Restrict the width within the minimum and maximum bounds newWidth = Math.max(minBarWidth, Math.min(newWidth, maxBarWidth)); // Set the new width bar.style.width = newWidth + &#34;px&#34;; // If the new width is at the minimum, keep the handle from going into the bar if(newWidth &lt;= minBarWidth) { elmnt.style.right = &#34;0px&#34;; // This keeps the handle from entering the bar area } else { elmnt.style.right = &#34;-50px&#34;; // This is for when the handle is not at the minimum width } } function closeDragElement() { // stop moving when mouse button is released: document.onmouseup = null; document.onmousemove = null; } } &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>朋友们大家好,当我最初尝试将半圆从其末端拉到左侧时,它以我不想要的方式进入酒吧并出现在那里。我实际上将 minBarWidth 设置为 3,这是条形宽度,但这仍然没有解决问题</p> <p><strong>不良情况:</strong></p> <p><a href="https://i.stack.imgur.com/kTCRg.png" target="_blank"><img src="https://cdn.txt58.com/i/AWkuc3RhY2suaW1ndXIuY29tL2tUQ1JnLnBuZw==" alt=""/></a></p> <p><strong>即使被迫向左移动也应该有效的视图:</strong><a href="https://i.stack.imgur.com/uTZIR.png" target="_blank"><img src="https://cdn.txt58.com/i/AWkuc3RhY2suaW1ndXIuY29tL3VUWklSLnBuZw==" alt=""/></a></p> </question> <answer tick="false" vote="-1"> <p>将其放入代码笔中将使您更容易理解您想要实现的目标。老实说,当你说“当我最初尝试将半圆从其末端向左拉时,它以我不想要的方式进入酒吧并出现在那里”时,我并不完全明白你在问什么。 </p> <p>但是,将 HTML 复制到测试页面,我看到了您在图像中显示的效果,但如果没有演示,它不会显示它如何跳到左侧。我解决这个问题的方法是?删除..</p> <pre><code>if(newWidth &lt;= minBarWidth) { :: } </code></pre> <p>..并且它无需“跳到左侧”即可工作。是你想要的吗?不知道,正如我所说,很难确切地知道您在寻找什么。</p> <p>我是否还可以建议您研究一下 ES6 的改进,例如新的 let/const 关键字(而不是 var)和用于事件分配的箭头函数。</p> </answer> </body></html>

回答 0 投票 0

JS,可拖动半圆无法进入栏内的问题

#酒吧 { 位置:固定; /* 固定位置以在滚动时保持在适当的位置 */ 顶部:0; 底部:0; 左:0; 宽度:3px; /* 条形的初始宽度 */ 背景色...</desc> <question vote="0"> <pre><code>&lt;html&gt; &lt;style&gt; #bar { position: fixed; /* Fixed position to stay in place on scroll */ top: 0; bottom: 0; left: 0; width: 3px; /* Initial width of the bar */ background-color: #f1f1f1; /* Background of the bar */ border-right: 1px solid #d3d3d3; /* Border of the bar */ z-index: 9; } #handle { width: 100px; /* Diameter of the handle circle */ height: 100px; /* Height of the handle circle */ background-color: #2196F3; border-radius: 50%; /* Make it round */ position: absolute; /* Absolute position within the bar div */ top: 50%; /* Center it vertically */ right: -50px; /* Align to the right of the bar */ transform: translateY(-50%); /* Adjust vertical position */ cursor: pointer; /* Change cursor to indicate it&#39;s draggable */ z-index: 10; clip-path: inset(0 0 0 50%); /* Clip left half of the circle */ } &lt;/style&gt; &lt;body&gt; &lt;div id=&#34;bar&#34;&gt; &lt;!-- This is the draggable handle --&gt; &lt;div id=&#34;handle&#34;&gt;&lt;/div&gt; &lt;/div&gt; &lt;script&gt; // Make the handle draggable dragElement(document.getElementById(&#34;handle&#34;)); function dragElement(elmnt) { var startPosX = 0, currentPosX = 0; var maxBarWidth = window.innerWidth - (elmnt.offsetWidth /16); // Tarayıcı penceresinin genişliğini kullan , Set the maximum width for the bar. elmnt.onmousedown = dragMouseDown; function dragMouseDown(e) { e = e || window.event; e.preventDefault(); startPosX = e.clientX; document.onmouseup = closeDragElement; document.onmousemove = elementDrag; } function elementDrag(e) { e = e || window.event; e.preventDefault(); currentPosX = e.clientX - startPosX; startPosX = e.clientX; var bar = document.getElementById(&#34;bar&#34;); var newWidth = bar.offsetWidth + currentPosX; // Define the minimum width to keep the handle from entering the bar area var minBarWidth = 3; // This is the initial width of the bar // Define the maximum width as a percentage of the window&#39;s width var maxBarWidth = window.innerWidth- elmnt.offsetWidth / 16; // Restrict the width within the minimum and maximum bounds newWidth = Math.max(minBarWidth, Math.min(newWidth, maxBarWidth)); // Set the new width bar.style.width = newWidth + &#34;px&#34;; // If the new width is at the minimum, keep the handle from going into the bar if(newWidth &lt;= minBarWidth) { elmnt.style.right = &#34;0px&#34;; // This keeps the handle from entering the bar area } else { elmnt.style.right = &#34;-50px&#34;; // This is for when the handle is not at the minimum width } } function closeDragElement() { // stop moving when mouse button is released: document.onmouseup = null; document.onmousemove = null; } } &lt;/script&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> <p>朋友们大家好,当我最初尝试将半圆从其末端拉到左侧时,它以我不想要的方式进入酒吧并出现在那里。我实际上将 minBarWidth 设置为 3,这是条形宽度,但这仍然没有解决问题</p> <p><strong>不良情况:</strong></p> <p><a href="https://i.stack.imgur.com/kTCRg.png" target="_blank"><img src="https://cdn.txt58.com/i/AWkuc3RhY2suaW1ndXIuY29tL2tUQ1JnLnBuZw==" alt=""/></a></p> <p><strong>即使被迫向左移动也应该有效的视图:</strong><a href="https://i.stack.imgur.com/uTZIR.png" target="_blank"><img src="https://cdn.txt58.com/i/AWkuc3RhY2suaW1ndXIuY29tL3VUWklSLnBuZw==" alt=""/></a></p> </question> <answer tick="false" vote="0"> <p>将其放入代码笔中将使您更容易理解您想要实现的目标。老实说,当你说“当我最初尝试将半圆从其末端向左拉时,它以我不想要的方式进入酒吧并出现在那里”时,我并不完全明白你在问什么。 </p> <p>但是,将 HTML 复制到测试页面,我看到了您在图像中显示的效果,但如果没有演示,它不会显示它如何跳到左侧。我解决这个问题的方法是?删除..</p> <pre><code>if(newWidth &lt;= minBarWidth) { :: } </code></pre> <p>..并且它无需“跳到左侧”即可工作。是你想要的吗?不知道,正如我所说,很难确切地知道您在寻找什么。</p> <p>我是否还可以建议您研究一下 ES6 的改进,例如新的 let/const 关键字(而不是 var)和用于事件分配的箭头函数。</p> </answer> </body></html>

回答 0 投票 0

© www.soinside.com 2019 - 2024. All rights reserved.