- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用来自 https://www.npmjs.com/package/angular4-jsoneditor 的 Angular4-JsonEditor .
我能够看到树格式的 JSON。如前所述,我还导入了 css,但有些样式没有得到应用。它显示如下所示。即使我尝试将自己的样式添加到现有类中,也不会应用任何更改。我是 Angular 的新手,请有人指导我。
app.component.ts
import { Component,ViewChild } from '@angular/core';
import { NgJsonEditorModule } from 'ang-jsoneditor' ;
@Component({
selector: 'app-root',
template: `<json-editor [options]="editorOptions" [data]="data"></json-
editor>`,
styleUrls: ['./app.component.css']
})
export class AppComponent {
public editorOptions: JsonEditorOptions;
public data: any;
@ViewChild(JsonEditorComponent) editor: JsonEditorComponent;
constructor() {
var options = {
"mode": "tree",
"search": true
};
this.editorOptions = new JsonEditorOptions();
this.editorOptions.mode="view";
this.editorOptions.search=false;
this.data={"products":[{"name":"car","product":[{"name":"honda","model":
[{"id":"civic","name":"civic"},{"id":"accord","name":"accord"},
{"id":"crv","name":"crv"},{"id":"pilot","name":"pilot"},
{"id":"odyssey","name":"odyssey"}]}]}]}
}
}
app.component.css
@import "~jsoneditor/dist/jsoneditor.min.css";
最佳答案
您需要将导入添加到src/style.css
@import "~jsoneditor/dist/jsoneditor.min.css";
关于javascript - Angular4-JsonEditor CSS 丢失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49256834/
所以,我正在做一个 Angular 项目 最近我在运行 npm start 时开始面临这个问题.我没有遇到这个问题,如果复制旧的 node-modules文件夹,但只有当我做一个新的 npm inst
我无法显示我的 JsonEditor 组件。这是我正在使用的代码: {{info.message}} Welcome to scope360 admi
我正在使用来自 https://www.npmjs.com/package/angular4-jsoneditor 的 Angular4-JsonEditor . 我能够看到树格式的 JSON。如前所
我是新来的 react 。但我使用 React CLI 创建了一个 React 应用程序,现在我想在这个应用程序中使用 jsoneditor。我在这里显示的编辑器链接。 JSON Editor 当我将
我正在努力集成JSONEditor进入 Django 管理员。我的模型中有一个字段使用 Postgres JSON,并且该库中的树编辑器非常完美。 模型.py class Executable(mod
我正在尝试在 Shiny 的应用程序中使用 listviewer 包中的 jsonedit 并希望显示默认情况下完全展开的树。在 jsonedit() 函数中没有执行此操作的选项,但底层 javasc
我正在使用 ng-jsoneditor 在 AngularJS 应用程序中显示和格式化 JSON 数据。正在关注this和 this文章。 HTML: JS: vm.json = { "Array
我是一名优秀的程序员,十分优秀!