我有一个gruntfile设置,以便我可以开发我的本地angularjs前端,同时将所有api请求转发到在网络上单独托管的java中间层。
这很好用,除了服务器的位置每隔几天更改一次,我不得不用最新的服务器位置不断更新gruntfile。
最新的服务器位置可以通过URL缩短服务找到,该服务转发到正确的位置,因此我可以使用这个grunt task / node.js代码获取它:
grunt.registerTask('setProxyHost', 'Pings the url shortener to get the latest test server', function() {
request('http://urlshortener/devserver', function(error, response, body) {
if (!error) {
var loc = response.request.uri.href;
if (loc.slice(0, 7) === 'http://') {
proxyHost = loc.slice(7, loc.length - 1);
}
}
});
});
当然这是异步的,当我运行它时,grunt已经在请求完成时设置了代理。
如何同步运行此nodejs请求或阻止grunt直到它完成?这只是为了开发,所以欢迎hacky解决方案。
由于
修改
很棒的答案Cory,大部分解决了问题,因为grunt现在等待任务完成才能继续。最后一个问题是,我无法从initConfig访问该配置,以便在initConfig首先运行时设置代理:
module.exports = function(grunt) {
[...]
grunt.initConfig({
connect: {
proxies: [{
host: grunt.config.get('proxyHost')
这篇文章(Access Grunt config data within initConfig())概述了这个问题,但我不确定如何在任务之外同步运行请求?
EDIT2 [已解决]:
Corys回答+这篇文章Programmatically pass arguments to grunt task?为我解决了这个问题。
module.exports = function(grunt) {
[...]
grunt.initConfig({
connect: {
proxies: [{
host: '<%= proxyHost %>',
答案 0 :(得分:7)
不是同步运行任务,而是轻松run the task asynchronously&amp;通过grunt配置对象在任务之间共享数据。
要异步运行任务,您必须首先通过调用this.async()
通知Grunt该任务将是异步的。此异步调用返回一个&#34; done函数&#34;您将用来告诉Grunt任务是否已通过或失败。您可以通过将处理程序传递为true来完成任务,并通过向其传递错误或错误来使其失败。
module.exports = function(grunt) {
grunt.registerTask('foo', 'description of foo', function() {
var done = this.async();
request('http://www...', function(err, resp, body) {
if ( err ) {
done(false); // fail task with `false` or Error objects
} else {
grunt.config.set('proxyHost', someValue);
done(true); // pass task
}
});
});
}
grunt.config.set()
位(在上面的代码中)可能是在任务之间共享值的最简单方法。由于所有任务共享相同的grunt配置,您只需在配置上设置一个属性,然后通过grunt.config.get('property')
module.exports = function(grunt) {
grunt.registerTask('bar', 'description of bar', function() {
// If proxy host is not defined, the task will die early.
grunt.config.requires('proxyHost');
var proxyHost = grunt.config.get('proxyHost');
// ...
});
}
grunt.config.requires
位将告知grunt该任务具有配置依赖性。这在任务长时间不受影响(非常常见)并且忘记错综复杂的情况下非常有用。如果您决定更改异步任务(重命名变量?dev_proxyHost,prod_proxyHost?),以下任务将优雅地通知您无法找到proxyHost
。
Verifying property proxyHost exists in config...ERROR
>> Unable to process task.
Warning: Required config property "proxyHost" missing. Use --force to continue.
grunt.registerTask('setProxyHost', 'Pings the url shortener to get the latest test server', function() {
var done = this.async(),
loc,
proxyHost;
request('http://urlshortener/devserver', function(error, response, body) {
if (error) {
done(error); // error out early
}
loc = response.request.uri.href;
if (loc.slice(0, 7) === 'http://') {
proxyHost = loc.slice(7, loc.length - 1);
// set proxy host on grunt config, so that it's accessible from the other task
grunt.config.set('proxyHost', proxyHost);
done(true); // success
}
else {
done(new Error("Unexpected HTTPS Error: The devserver urlshortener unexpectedly returned an HTTPS link! ("+loc+")"));
}
});
});
然后,从您的代理任务,您可以通过以下
检索此proxyHost值var proxyHost = grunt.config.get('proxyHost');