前端怎么获取接口返回pdf文档内容 react
2 回答
慕勒3428872
TA贡献1848条经验 获得超6个赞
通过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;
}
});
添加回答
举报
0/150
提交
取消