作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Django Rest Framework 和 React.js。我的页面使用如下 API 显示一个用户的个人资料:
http://localhost:8000/api/profile/[pk]
我想动态设置react ajax请求的url以包含正确的pk,以便它从服务器请求正确的用户信息。
我可以使用像 window.location.href 这样的函数并从末尾弹出数字,但是有没有办法通过直接从服务器传递 pk 来做到这一点,即使用模板变量?
最佳答案
渲染组件时,应该将 pk 作为 prop 传递。
<script>
React.render(React.createElement(Profile, {
userId: "{{ userId }}",
urlPrefix: "/api/profile/"
}), element);
</script>
更好的选择可能是只获取用户,然后渲染组件。例如,使用 super 代理:
superagent.get('/api/profile/{{ userId }}', function(res){
React.render(React.createElement(Profile,
{user: res.body}
), element);
});
<小时/>
使用 browserify,您可以将数据包含在脚本标记中,然后在代码中使用它:
<script>var _appData = {userId: "{{ userId }}"};</script>
或者使用 -r
标志导出模块(API 中的 .require()
)。
# sh
browserify -r react -r src/profile.js:profile.js
// js
b.require('react').require('src/profile.js', {expose: 'profile.js'});
然后在正则脚本标签中使用模块
<script>
var React = require('react');
var Profile = require('profile.js');
React.render(React.createElement(Profile, {
userId: "{{ userId }}",
urlPrefix: "/api/profile/"
}), element);
</script>
关于django - 如何将 Django 模板变量插入到 React 脚本中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26478394/
我是一名优秀的程序员,十分优秀!