- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
总结
我正在尝试使用 React 和 JSON 数据创建一个博客。
当我 console.log(this.state.blogs)
时,我收到以下输出:[object Object]、[object Object]、[object Object]
。
我尝试过使用 .map 函数,但不确定如何使用 JSON 数据。
我的 key 是“blog_text”,因为这是我将它编码回 React 的方式。
到目前为止,我所能做的就是通过打印出 this.state.blogs[0]
来访问对象数组中的不同项目。我不确定如何将点运算符或 .map 函数应用于此数组。我在 Stack Overflow 上搜索过,但它不适用于我保存 JSON 的方式。有人有建议吗?提前谢谢你。
var LoginForm = React.createClass({
getInitialState: function() {
return {
username: 'alexa',
password: '1234',
blogs: {}
};
},
componentDidMount: function() {
ajax('obtain_blogs.php', null, function(response) {
if (response.result === 'error') {
alert('Error: ' + response.msg);
} else if (response.result === 'success') {
console.log("success");
console.log("Response.blogtext: " + response.blogtext);
console.log("Response.blogtext[0]: " + response.blogtext[0]);
this.setState({ blogs: response.blogtext, loading: false});
//this.props.getBlogs(response.blogtext);
} else {
alert("Response message has no result attribute");
}
}.bind(this));
},
onUsernameChange: function(e) {
this.setState({ username: e.target.value });
},
onPasswordChange: function(e) {
this.setState({ password: e.target.value });
},
onSubmit: function(e) {
ajax('login.php', {username: this.state.username, password: this.state.password },
function(response) {
if (response.result === 'failure') {
alert('Bad username or password');
}
else if (response.result === 'success') {
this.props.onLogin(response.counter);
}
else if (response.result === 'error') {
alert('Error: ' + response.msg);
}
else {
alert('Response message has no result attribute.');
}
}.bind(this));
},
render: function() {
var blog_entries = this.state.blogs.toString();
console.log("Blog Entries: " + blog_entries);
var key = "blog_text";
console.log("this.state.blogs typeof: " + typeof(this.state.blogs));
return (
<div>
<h1>Single Blog System</h1>
<hr></hr>
Username: <input type="text" onChange={this.onUsernameChange} value={this.state.username} /> <br></br>
Password: <input type="password" onChange={this.onPasswordChange} value={this.state.password} /> <br></br>
<input type="submit" onClick={this.onSubmit} value="Login" /> <br></br>
<hr></hr>
<h2>Blogs:</h2>
<div>
{this.state.blogs}
</div>
</div>
);
}
});
<?php
# update_click will connect to the database and then update the counter
# variable to the database.
# Global Declaration for all "try" blocks to have access.
$servername = "************";
$dbusername = "************";
$dbpassword = "************";
$dbname = "************";
$tablename = "************";
# Checks the connection with the database.
try
{
$conn = new PDO("mysql:host=$servername;dbname=$dbname", $dbusername, $dbpassword);
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
$sql= "SELECT blog_text FROM users";
$stmt = $conn->prepare($sql);
$json=json_encode($stmt);
$stmt->execute();
if ($stmt->rowCount() == 0){
$response = array('error' => 'Did not find blogs');
print(json_encode($response));
exit();
}
$row = $stmt->fetchAll(PDO::FETCH_ASSOC);
} catch(PDOException $e)
{
$response = array('result' => 'error', 'msg' => $e->getMessage());
print(json_encode($response));
console.log("my error. message is %s", $e);
exit();
}
$response = array('result' => 'success', 'blogtext' => $row);
print(json_encode($response));
?>
最佳答案
我建议为博客条目创建一个单独的组件,然后执行以下操作。
this.blogComponents = this.state.blogs.map((blogEntryObject, index)=>{return <BlogEntry blog={blogEntryObject}>});
然后用 blogComponents 数组替换 blogs 下的 div。在 blogEntry 组件中,您可以通过 this.props.blog 获取 blogEntryObject,在 render 方法中,您可以指定如何显示博客条目
关于javascript - 如何在 React 渲染函数中从 JSON 对象获取值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37104218/
这个问题在这里已经有了答案: final keyword in method parameters [duplicate] (9 个回答) 关闭 8 年前。 在此示例中,声明 Object fina
我的目标:是通过我的函数更新字段获取选定值并使用函数输出值运行它。 问题:当我从列表中选择值时,它不会触发函数,也不会更新字段。 感谢您的帮助。 HTML 12 14 16 18 20 22 24
我有一本具有这种形式的字典: myDict = {'foo': bar, 'foobar baz': qux} 现在,我想拆分字典键中的空格,使其成为下一个键并获取值(重复)。 myDictRev1
vector a; vector b; int temp_holder; cout > temp_holder) a.push_back(temp_holder); cout > temp_h
Java 的开发过程中免不了与 Date 类型纠缠,准备总结一下项目经常使用的日期相关操作,JDK 版本 1.7,如果能够帮助大家节约那么几分钟起身活动一下,去泡杯咖啡,便是极好的,嘿嘿。当然,我
我正在使用 jquery ui 日期选择器来获取 fromDate 和 toDate 以下是from日期的代码 $("#from_date").datepicker({
我是一名优秀的程序员,十分优秀!