module 相关问题

更大,更复杂系统的逻辑细分。

创建内核模块时如何消除“vmlinux 不可用”错误

学校给我分配了一个任务,要创建一个内核模块,该模块可以使用我的 PID 访问 task_struct。我收到一个错误(我不认为这是一个错误,但我不知道还能称呼它什么)...

回答 1 投票 0

Python setup.py“AttributeError:模块'app'没有属性'main'”

我用Python创建了一个具有以下项目结构的项目: G:。 │ .gitignore │ 自述文件.txt │ 需求.txt │ 设置.py │ ├────.vscode │ 设置.json │ ├────应用程序 │ │ 应用程序.py │ │ 模式...

回答 1 投票 0

如何从需要在其自己的文件夹中运行另一个包的包中导入文件

振兴/ ├── 应用程序.py ├── 静态/ ├── 模板/ ├── GFPGAN/ │ ├── 实验/ │ ├── gfpgan/ │ ├── 输入/ │ ├── 结果/ │ └── inference_gfpgan.py └── 去旧化/ ├── 脱老/ ├──

回答 1 投票 0

在应用程序中使用matomo并希望将动态参数传递给Angular中的Matomodule.forRoot方法。获取动态配置资产

嗨,我遇到了一个问题, 使用 Matomo 进行分析并在 app.module.ts 配置中需要如下所示 - MatomoModule.forRoot( { 人1:值1, 人1:值2, 人1:值3, }) 我也是

回答 1 投票 0

如何在Python 3.3.2中导入itertools

我正在 Mac 版本 3.3.2 上运行 python(通过 IDLE,尽管我不确定那是什么),由于某种原因,当我输入 from itertools import * 时,它不允许我这样做使用 ch... 等命令

回答 2 投票 0

找不到名称“标头”、“RequestInit”、“响应”

我将本机脚本从 2.5.2 更新到了 3.0.3。突然,当我尝试运行该应用程序时,出现以下错误: node_modules/tns-core-modules/tns-core-modules.d.ts(17,27):错误 TS2304:...

回答 1 投票 0

Shiny 模块应用中传单地图的高度

我想将我的小应用程序作为下一个模块添加到我的大应用程序中。一切正常,除了...传单地图高度。 在独立应用程序中我有: 用户界面 <- fluidPage( tags$style(type = "text/css&quo...

回答 1 投票 0

即使重新安装节点 100 次,npm 'MODULE_NOT_FOUND' 也无法解决

节点:内部/模块/cjs/loader:1146 抛出错误; ^ 错误:找不到模块“C:\Program Files” 奥德伊斯 颂歌模块 下午在 颂歌模块 下午在 pm-cli.js' 在 Module._resolveFilename (节点:内部/

回答 1 投票 0

VScode 中的 Python 模块已安装,但调用时不起作用

嘿哟,这里是编程新手。 我以前使用过 Spyder,但最近想尝试使用 VScode,但在设置时遇到了问题。 我已经安装了 numpy-module 没有问题,但是...

回答 1 投票 0

Azure 自动化自定义模块未按预期导出命令

我遇到了与此处描述的完全相同的问题: Azure 自动化自定义模块不导出命令 我的 psm1 文件中有 Export-ModuleMember 并将 FunctionsToExport 设置为“*”...

回答 1 投票 0

Python 模块帮助 DocStrings - 排除额外文档

我编写了一个简单的模块(testmodule),它导入了一些其他模块。当我导入它并输入: 帮助(测试模块) 我也从导入的模块中获得了所有帮助。 有没有办法

回答 1 投票 0

初始化整个Python包的变量

我构建了一个包含不同模块的包。 一切正常,但我在初始化变量时遇到问题。 在包中,我需要一个 init() 函数来初始化变量。 我怎样才能...

回答 1 投票 0

ERROR DOMException:字符串包含无效字符

HTML 文件 登录页面 {{标题}}{{文字}} HTML 文件 <div> <header>Login Page</header> <p><b>{{title}}{{text}}</b></p> <button type="button" class="btn btn-info" (click)="onClickMe($event)">Info</button> <br> <br> <rating [rating]="5"></rating> <div *ngFor="let catpicture of getPictures"> <!-- {{catpicture}} --> <catpicture [data="catpicture"]></catpicture> </div> </div> 登录组件文件 import { Component,Input } from '@angular/core'; import { catPicture } from './login.loginname'; @Component({ selector: 'catpicture', templateUrl: './login.component.html', styleUrl: './login.component.scss', providers: [catPicture] }) export class LoginComponent { title = "My First Angular App"; text = " World"; onClickMe($event: any) { console.log("Clicked",$event); } getPictures; constructor(catPicture:catPicture){ this.getPictures=catPicture.getPictures(); } // @Input()data:any } 登录名.ts export class catPicture{ getPictures(){ return [ { imageUrl: "http://loremflickr.com/150/150?random=1", pictureName: "Product 1", postDate: "May 31, 2018", description: "Cras sit amet nibh libero, in gravida...", rating:4 }, { imageUrl: "http://loremflickr.com/150/150?random=2", pictureName: "Product 2", postDate: "May 31, 2018", description: "Cras sit amet nibh libero, in gravida...", rating:3 }, { imageUrl: "http://loremflickr.com/150/150?random=3", pictureName: "Product 3", postDate: "May 31, 2018", description: "Cras sit amet nibh libero, in gravida...", rating:3 }, { imageUrl: "http://loremflickr.com/150/150?random=4", pictureName: "Product 4", postDate: "May 31, 2018", description: "Cras sit amet nibh libero, in gravida...", rating:3 } ]; } } catpicture.ts import { Component, Input } from "@angular/core"; // import { getCatpictures } from './login.canpicture'; @Component({ selector:'catpicture', template:` <div class="media"> <img class="mr-3" src="{{data.imageUrl}}" alt="GeneralPicture"> <div class="media-body"> <h5 class="mt-0">Title</h5> {{data.postDate}} <br> {{data.description}} </div> </div> `, styles:[` .media{ margin-bottom:20px; } `] }) export class catPicture{ @Input() data: any; } 模块.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { LoginComponent } from './login/login.component'; import { MovieComponent } from './movie/movie.component'; import { HomeComponent } from './home/home.component'; import { catPicture } from './login/login.loginname'; @NgModule({ declarations: [ AppComponent, LoginComponent, MovieComponent, HomeComponent, ], imports: [ BrowserModule, AppRoutingModule ], providers: [catPicture], bootstrap: [AppComponent] }) export class AppModule { } HTML页面显示如下: ERROR DOMException:字符串包含无效字符 所以我回去检查HTML代码文件,但不幸的是我不知道如何修复这个错误,因为很简单,但我是一个初学者,有人可以告诉我该怎么做吗?谢谢大家!! 我该怎么办? 在第一个 HTML 文件中,以下行需要更正。 <catpicture [data]="catpicture"></catpicture> <catpicture [data="catpicture"]></catpicture> 更改为<catpicture [data]="catpicture"></catpicture> 解决了 HTML 文件应该是这样的: <div> <header>Login Page</header> <p><b>{{title}}{{text}}</b></p> <!-- <ul> --> <!-- <li *ngFor="let loginname of loginnames"> {{loginname}} </li> --> <button type="button" class="btn btn-info" (click)="onClickMe($event)">Info</button> <br> <rating [rating]="3"></rating> <br> <rating [rating]="5"></rating> <!-- <div *ngFor="let catpicture of getPictures"> <catpicture [data]="catpicture"></catpicture> </div> --> <div *ngFor="let picture of getPictures"> <img [src]="picture.imageUrl" alt="{{ picture.pictureName }}"> <p>{{ picture.pictureName }}</p> <p>{{ picture.postDate }}</p> <p>{{ picture.description }}</p> <p>Rating: {{ picture.rating }}</p> </div>//if return object, should following HTML format type </div>

回答 3 投票 0

ERROR DOMException:字符串在 Angular 和 Typescript 中包含无效字符

HTML 文件 登录页面 {{标题}}{{文字}} HTML 文件 <div> <header>Login Page</header> <p><b>{{title}}{{text}}</b></p> <button type="button" class="btn btn-info" (click)="onClickMe($event)">Info</button> <br> <br> <rating [rating]="5"></rating> <div *ngFor="let catpicture of getPictures"> <!-- {{catpicture}} --> <catpicture [data="catpicture"]></catpicture> </div> </div> 登录组件文件 import { Component,Input } from '@angular/core'; import { catPicture } from './login.loginname'; @Component({ selector: 'catpicture', templateUrl: './login.component.html', styleUrl: './login.component.scss', providers: [catPicture] }) export class LoginComponent { title = "My First Angular App"; text = " World"; onClickMe($event: any) { console.log("Clicked",$event); } getPictures; constructor(catPicture:catPicture){ this.getPictures=catPicture.getPictures(); } // @Input()data:any } 登录名.ts export class catPicture{ getPictures(){ return [ { imageUrl: "http://loremflickr.com/150/150?random=1", pictureName: "Product 1", postDate: "May 31, 2018", description: "Cras sit amet nibh libero, in gravida...", rating:4 }, { imageUrl: "http://loremflickr.com/150/150?random=2", pictureName: "Product 2", postDate: "May 31, 2018", description: "Cras sit amet nibh libero, in gravida...", rating:3 }, { imageUrl: "http://loremflickr.com/150/150?random=3", pictureName: "Product 3", postDate: "May 31, 2018", description: "Cras sit amet nibh libero, in gravida...", rating:3 }, { imageUrl: "http://loremflickr.com/150/150?random=4", pictureName: "Product 4", postDate: "May 31, 2018", description: "Cras sit amet nibh libero, in gravida...", rating:3 } ]; } } catpicture.ts import { Component, Input } from "@angular/core"; // import { getCatpictures } from './login.canpicture'; @Component({ selector:'catpicture', template:` <div class="media"> <img class="mr-3" src="{{data.imageUrl}}" alt="GeneralPicture"> <div class="media-body"> <h5 class="mt-0">Title</h5> {{data.postDate}} <br> {{data.description}} </div> </div> `, styles:[` .media{ margin-bottom:20px; } `] }) export class catPicture{ @Input() data: any; } 模块.ts import { NgModule } from '@angular/core'; import { BrowserModule } from '@angular/platform-browser'; import { AppRoutingModule } from './app-routing.module'; import { AppComponent } from './app.component'; import { LoginComponent } from './login/login.component'; import { MovieComponent } from './movie/movie.component'; import { HomeComponent } from './home/home.component'; import { catPicture } from './login/login.loginname'; @NgModule({ declarations: [ AppComponent, LoginComponent, MovieComponent, HomeComponent, ], imports: [ BrowserModule, AppRoutingModule ], providers: [catPicture], bootstrap: [AppComponent] }) export class AppModule { } HTML页面显示如下: ERROR DOMException:字符串包含无效字符,所以我回去检查 HTML 代码文件,但不幸的是我不知道如何修复这个错误,因为很简单,但我是初学者,有人可以告诉我该怎么做吗?谢谢大家!! 我该怎么办? 在第一个 HTML 文件中,以下行需要更正。 <catpicture [data]="catpicture"></catpicture>

回答 1 投票 0

为什么 ny Nuxt 模块可以在本地工作,但当我从 NPM 导入它时却不能工作?

我制作了一个 Nuxt 3 模块,其中包含一些组件、样式表和图像。 我已将其添加到目标应用程序的 package.json 中的模块数组中: 模块:['@zadigetvoltaire/nux...

回答 1 投票 0

Heroku 部署错误:无模块错误并返回 self.load_wsgiapp()

我使用Python 3.12制作了一个项目并让它在本地工作。现在我尝试将它部署在 Heroku 上,尽管我已经安装了所有要求,但它还是给出了这一点。它还说没有名为...的模块

回答 1 投票 0

无法配置EditorJs

我有一个网页,我想在其中使用 EditorJs。其 html 是: 我有一个网页,我想在其中使用 EditorJs。其 html 是: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Button Example</title> <!-- Include Editor.js styles --> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@editorjs/editorjs@latest/dist/editor.min.css" /> </head> <body> <div id="starter">Application begins here!</div> <div id="editorjs"></div> <button id="save">Save Article</button> <script src="https://cdn.jsdelivr.net/npm/@editorjs/editorjs@latest"></script> <script type="module" src="sampler.js"></script> </body> </html> sampler.js 文件如下所示: import {EditorJS} from '@editorjs/editorjs'; import {Header} from '@editorjs/header'; const editor = new EditorJS({ holder:"editorjs", tools:{ header:{ class:Header, inlineToolbar:['link'] }, list:{ class:List, inlineToolbar:['link','bold'] } } }) let saveBtn=document.querySelector('button') saveBtn.addEventListener('click',()=>{ editor.save().then((outputData)=>{ console.log(outputData) }) }) 我正在使用 CDN 导入,那么我在sampler.js 中的导入语句应该是什么样的。目前我收到此错误: Uncaught TypeError: Failed to resolve module specifier "@editorjs/editorjs". Relative references must start with either "/", "./", or "../" 如果是CDN引用的,则不需要导入直接使用。

回答 1 投票 0

Typescript 图像导入

我在这里找到了解决方案:Webpack & Typescript image import 但我为此收到错误: [ts] 属性“src”的类型不兼容。 类型 'typeof import("*.png")' 未分配...

回答 4 投票 0

nestjs 模块设置用于测试

我想在 mall.service.spec.ts 中测试我的商城服务 请帮忙解释为什么 npm 不工作。 // 商城.service.spec.ts 描述('MallService', () => { 出租服务:MallService beforeEach(异步...

回答 1 投票 0

在 Windows 10 上使用 LaTeX Workshop 在 VSCode 上格式化文档时由于缺少 perl 模块而出错

我在 Visual Studio Code 上安装了最新版本的 LaTeX Workshop,以及 MikTex 的最新版本和 ActivePerl: 这是为 MSWin32-x64-multi-

回答 2 投票 0

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