使用 Meteor.publish 设置执行一些异步请求(例如 API)然后返回要在 React 组件中显示的数据的过程是什么?发布如何工作以及客户端代码如何访问它?如果可能的话,我想用 withTracker 函数来做到这一点。谢谢!
你如何发布和订阅不是 Mongo db 的数据?
IT技术
reactjs
meteor
2021-04-28 04:37:38
1个回答
本指南应该会有所帮助:出版物和数据加载。
基本上,您需要了解 Meteor 的低级 API是如何工作的,以便您知道如何将您想要的任何数据集发布到客户端 Mongo 集合。此外,要从其他 API 端点发布数据,指南的这一部分显示了一个非常清晰的示例。
至于在客户端订阅这种自定义发布,就和订阅典型的MongoDB类型发布一样简单。请注意,不同之处在于,正如我上面提到的,您是发布到/订阅客户端集合。
下面是我自己写的一个简单的例子。我不太了解 React,但客户端代码主要基于 Meteor 的教程:
/* client side */
import React, { Component } from 'react';
import { withTracker } from 'meteor/react-meteor-data';
import { Meteor } from 'meteor/meteor';
import { Mongo } from 'meteor/mongo';
const Foo = new Mongo.Collection('Foo');
class App extends Component {
renderFoo() {
return this.props.foos.map((foo) => (
<Foo key={foo._id} foo={foo} />
));
}
}
export default withTracker(() => {
Meteor.subscribe('publishFromAnApi', ...args);
return {
foos: Foo.find().fetch(),
};
})(App);
/* server side */
import { Meteor } from 'meteor/meteor';
import { HTTP } from 'meteor/http';
Meteor.publish('publishFromAnApi', function publishFromAnApi(...args) { // must use a function instead of an arrow function here for the sake of `this`
const publishedKey = {};
const collectionName = 'Foo'; // same name of the client side collection mentioned in line 6
const poll = () => {
const { data } = HTTP.get('/some/api/route', { ...someArgsToRequest });
for (let i = 0; i < data.responseFromAPI; i += 1) { // just a random example here, assuming responseFromAPI is an array
const document = data.responseFromAPI[i];
const id = <the id of the document; normally is in Mongo.ObjectID type>;
// some logics might be going on...
if (!publishedKey[id]) {
this.added(collectionName, id, document);
publishedKey[id] = true;
} else {
this.changed(collectionName, id, document);
}
}
};
poll();
this.ready();
const interval = Meteor.setInterval(poll, <poll interval>);
this.onStop(() => {
Meteor.clearInterval(interval);
});
});