- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我为作业编写了简单的代码。我引用了文档和几个 youtube 视频教程系列。我的 react 代码是正确的我在运行代码时没有收到任何错误。但是这些 react-boostrap 元素没有渲染。此代码仅返回 html 输出。请看看这段代码并帮助我解决这个问题。
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import registerServiceWorker from './registerServiceWorker';
import { BrowserRouter as Router, Route } from 'react-router-dom';
import Login from './components/Login';
import Test from './text';
ReactDOM.render(
<Router>
<div>
<div>
<App/>
</div>
</div>
</Router>, document.getElementById('root'));
registerServiceWorker();
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<link rel="manifest" href="%PUBLIC_URL%/manifest.json">
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico">
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<title>React App</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
</body>
</html>
那些是 index.html 和 index.js 页面。我认为这些足以发现问题。我会发布主管以及更多信息。
import React, { Component } from 'react';
import { Switch, Route } from 'react-router-dom'
import Logo from '../images/logo.png';
import Dashboard from './Dashboard';
import AdminList from './AdminList';
import ClientList from './ClientList';
import ServiceList from './ServiceList';
import AdminView from './AdminView';
import ClientView from './ClientView';
import ServiceView from './ServiceView';
import AdminNew from './AdminNew';
import ClientNew from './ClientNew';
import ServiceNew from './ServiceNew';
import Category from './Category';
import CategoryNew from './CategoryNew';
import Login from './Login';
import App from '../App';
const Main = () => (
<main>
<Switch>
<Route exact path='/' component={Dashboard} />
<Route exact path='/login' component={Login}/>
<Route path='/Category'
render={({ match: { url } }) => (
<div>
<Route exact path={`${url}/`} component={Category} />
<Route path={`${url}/new`} component={CategoryNew} />
</div>
)} />
<Route path='/Client'
render={({ match: { url } }) => (
<div>
<Route exact path={`${url}/`} component={ClientList} />
<Route path={`${url}/new`} component={ClientNew} />
<Route path={`${url}/view`} component={ClientView} />
</div>
)} />
<Route path='/Service'
render={({ match: { url } }) => (
<div>
<Route exact path={`${url}/`} component={ServiceList} />
<Route path={`${url}/new`} component={ServiceNew} />
<Route path={`${url}/view`} component={ServiceView} />
</div>
)} />
<Route path='/Admin'
render={({ match: { url } }) => (
<div>
<Route exact path={`${url}/`} component={AdminList} />
<Route path={`${url}/new`} component={AdminNew} />
<Route path={`${url}/view`} component={AdminView} />
</div>
)} />
</Switch>
</main>
)
export default Main;
主要.js
import React, { Component } from 'react';
import axios from 'axios';
class ServiceNew extends Component {
constructor(){
super();
this.state={
Name:'',
NIC:'',
Email:'',
Password:'',
Contact:'',
District:'',
Category:'',
}
this.handleNameChange=this.handleNameChange.bind(this)
this.handleNICChange=this.handleNICChange.bind(this)
this.handleEmailChange=this.handleEmailChange.bind(this)
this.handlePwdChange=this.handlePwdChange.bind(this)
this.handlePhoneChange=this.handlePhoneChange.bind(this)
this.handleDistrictChange=this.handleDistrictChange.bind(this)
this.handleCategoryChange=this.handleCategoryChange.bind(this)
this.handleClick=this.handleClick.bind(this)
}
handleNameChange(e){
this.setState({
Name:e.target.value
})
console.log(this.state.Name)
}
handleNICChange(e){
this.setState({
NIC:e.target.value
})
console.log(this.state.NIC)
}
handleEmailChange(e){
this.setState({
Email:e.target.value
})
console.log(this.state.Email)
}
handlePwdChange(e){
this.setState({
Password:e.target.value
})
console.log(this.state.Password)
}
handlePhoneChange(e){
this.setState({
Contact:e.target.value
})
console.log(this.state.Contact)
}
handleDistrictChange(e){
this.setState({
District:e.target.value
})
console.log(this.state.District)
}
handleCategoryChange(e){
this.setState({
Category:e.target.value
})
console.log(this.state.Category)
}
handleClick = event =>{
event.preventDefault();
axios.post('http://localhost:4000/api/serviceproviders-insert',{
name:this.state.Name,
_id:this.state.NIC,
email:this.state.Email,
password:this.state.Password,
contact:this.state.Contact,
district:this.state.District,
category:this.state.Category,
})
.then(res =>{
alert("Successfully Registered");
console.log(res);
console.log(res.data)
this.setState={
Name:'',
NIC:'',
Email:'',
Password:'',
Contact:'',
District:'',
Category:'',
}
})
.catch(err=>{
console.log(err)
})
}
render() {
return (
<div>
<div>
<div class="well">
<a href="#" class="list-group-item list-group-item-danger"><h4><b>Add New</b></h4></a>
</div>
<form>
<div class="form-group">
<label for="name">Name:</label>
<input type="name" class="form-control" value={this.state.Name} id="name" placeholder="Enter name" name="name" onChange={this.handleNameChange}/>
</div>
<div class="form-group">
<label for="nic">NIC:</label>
<input type="nic" class="form-control" value={this.state.NIC} id="nic" placeholder="Enter NIC" name="nic" onChange={this.handleNICChange}/>
</div>
<div class="form-group">
<label for="email">Email:</label>
<input type="email" class="form-control" value={this.state.Email} id="email" placeholder="Enter email" name="email"onChange={this.handleEmailChange} />
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control"value={this.state.Password} id="pwd" placeholder="Enter password" name="pwd" onChange={this.handlePwdChange} />
</div>
<div class="form-group">
<label for="phone">Contact No:</label>
<input type="phone" class="form-control" value={this.state.Contact} id="phone" placeholder="Enter contact number" name="phone" onChange={this.handlePhoneChange} />
</div>
<div class="form-group">
<label for="dis">District:</label>
<input type="dis" class="form-control" value={this.state.District} id="dis" placeholder="Enter district" name="dis" onChange={this.handleDistrictChange} />
</div>
<div class="form-group">
<label for="cat">Working Category:</label>
<input type="cat" class="form-control" value={this.state.Category} id="cat" placeholder="Enter working category" name="cat" onChange={this.handleCategoryChange}/>
</div>
<button type="button" onClick={this.handleClick} class="btn btn-primary">Add New</button>
</form>
</div>
</div>
);
}
}
export default ServiceNew;
ServiceNew.js
这东西是我 friend 写的。他告诉我这些代码完全可以在他的电脑上运行,没有任何问题。
最佳答案
你必须在 React 中使用 className
而不是 class
。
<div className="form-group">
...
</div>
关于javascript - React JS 没有编译 Bootstrap 组件。只返回 HTML 组件。 0xerr011d,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50751916/
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
在编码时,我问了自己这个问题: 这样更快吗: if(false) return true; else return false; 比这个? if(false) return true; return
如何在逻辑条件下进行“返回”? 在这样的情况下这会很有用 checkConfig() || return false; var iNeedThis=doSomething() || return fa
这是我的正则表达式 demo 如问题所述: 如果第一个数字是 1 则返回 1 但如果是 145 则返回 145 但如果是 133 则返回 133 样本数据a: K'8134567 K'81345678
在代码高尔夫问答部分查看谜题和答案时,我遇到了 this solution返回 1 的最长和最晦涩的方法 引用答案, int foo(void) { return! 0; } int bar(
我想在下面返回 JSON。 { "name": "jackie" } postman 给我错误。说明 Unexpected 'n' 这里是 Spring Boot 的新手。 1日龄。有没有正确的方法来
只要“is”返回 True,“==”不应该返回 True 吗? In [101]: np.NAN is np.nan is np.NaN Out[101]: True In [102]: np.NAN
我需要获取所有在 6 号或 7 号房间或根本不在任何房间的学生的详细信息。如果他们在其他房间,简单地说,我不希望有那个记录。 我的架构是: students(roll_no, name,class,.
我有一个表单,我将它发送到 php 以通过 ajax 插入到 mysql 数据库中。一切顺利,php 返回 "true" 值,但在 ajax 中它显示 false 消息。 在这里你可以查看php代码:
我在 Kotlin 中遇到了一个非常奇怪的无法解释的值比较问题,以下代码打印 假 data class Foo ( val a: Byte ) fun main() { val NUM
请注意,这并非特定于 Protractor。问题在于 Angular 2 的内置 Testability service Protractor 碰巧使用。 Protractor 调用 Testabil
在调试窗口中,以下表达式均返回 1。 Application.WorksheetFunction.CountA(Cells(4 + (i - 1) * rows_per_record, 28) & "
我在本地使用 jsonplaceholder ( http://jsonplaceholder.typicode.com/)。我正在通过 extjs rest 代理测试我的 GET 和 POST 调用
这是 Postman 为成功调用我的页面而提供的(修改后的)代码段。 var client = new RestClient("http://sub.example.com/wp-json/wp/v2
这个问题在这里已经有了答案: What to do with mysqli problems? Errors like mysqli_fetch_array(): Argument #1 must
我想我对 C 命令行参数有点生疏。我查看了我的一些旧代码,但无论这个版本是什么,都会出现段错误。 运行方式是 ./foo -n num(其中 num 是用户在命令行中输入的数字) 但不知何故它不起作用
我已经编写了一个类来处理命名管道连接,如果我创建了一个实例,关闭它,然后尝试创建另一个实例,调用 CreateFile() 返回 INVALID_HANDLE_VALUE,并且 GetLastErro
即使 is_writable() 返回 true,我也无法写入文件。当然,该文件存在并且显然是可读的。这是代码: $file = "data"; echo file_get_contents($fil
下面代码中的变量 $response 为 NULL,尽管它应该是 SOAP 请求的值。 (潮汐列表)。当我调用 $client->__getLastResponse() 时,我从 SOAP 服务获得了
我一直在网上的不同论坛上搜索答案,但似乎没有与我的情况相符的... 我正在使用 Windows 7,VS2010。 我有一个使用定时器来调用任务栏刷新功能的应用程序。在该任务栏函数中包含对 LoadI
我是一名优秀的程序员,十分优秀!