前端怎么获取接口返回pdf文档内容 react
2 回答
临摹微笑
TA贡献1982条经验 获得超2个赞
通过MobX来解决
MobX 是一个简单、高效的前端状态管理脚本库。 根据文档,Just do something to the state and MobX will make sure your app respects the changes。
var person = mobx.observable({
firstName: 'Matt',
lastName: 'Ruby',
age: 37,
fullName: function () {
this.firstName + ' ' + this.lastName;
}
});
- 2 回答
- 0 关注
- 618 浏览
添加回答
举报
0/150
提交
取消