We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
protected override async Task InitializeAsync(CancellationToken stoppingToken = default) { AddDataFlow<DataParser>(); AddDataFlow(GetDefaultStorage); await AddRequestsAsync( new Request( "https://news.cnblogs.com/n/page/1", new Dictionary<string, object> { { "网站", "博客园" } })); }
这里面的 https://news.cnblogs.com/n/page/1 没有办法用传参的形式吗? 还是要修改源码
The text was updated successfully, but these errors were encountered:
你指的传参的形式是指?
Sorry, something went wrong.
protected override async Task InitializeAsync(CancellationToken stoppingToken = default) { AddDataFlow(); AddDataFlow(GetDefaultStorage); await AddRequestsAsync( new Request( "https://news.cnblogs.com/n/page/1", new Dictionary<string, object> { { "网站", "博客园" } })); } 这里面的 https://news.cnblogs.com/n/page/1 没有办法用传参的形式吗? 还是要修改源码
protected override async Task InitializeAsync(CancellationToken stoppingToken = default) { AddDataFlow(); AddDataFlow(GetDefaultStorage); await AddRequestsAsync( new Request( "https://news.cnblogs.com/n/page/1", new Dictionary<string, object> { { "网站", "博客园" } })); }
自己拼接下字符串不就完了么. 你是想要模板化变量化?
No branches or pull requests
protected override async Task InitializeAsync(CancellationToken stoppingToken = default)
{
AddDataFlow<DataParser>();
AddDataFlow(GetDefaultStorage);
await AddRequestsAsync(
new Request(
"https://news.cnblogs.com/n/page/1", new Dictionary<string, object> { { "网站", "博客园" } }));
}
The text was updated successfully, but these errors were encountered: