更新::问题已解决,我可以将其特定于我的JAVASCRIPT文件中。
cap_screen.js
var page = require('webpage').create(); //Create a new instance of a web page
var system = require('system').create(); //Our script needs to require Phantom's Web Page module
page.onError = function(msg, trace) { //Our script needs to require Phantom's Web Page module
var msgStack = ['ERROR: ' + msg];
if (trace && trace.length) {
msg.push('TRACE:');
trace.forEach(function(t) {
msgStack.push(' -> ' + t.file + ': ' + t.line + (t.function ? ' (in function "' + t.function +'")' : ''));
});
}
console.error(msgStack.join('\n'));
};
//Now write core of screen cap script
//Remember: system.args[1] = "http://wwww.clowder.com" system.args[2] = "clowder-pic.png"
page.open(system.args[1], function(status) {
console.log('Status: ' + status);
page.render(system.args[2]); //this line captures the screen
phantom.exit();
});
我的问题是提交网址时会弹出以下错误:
TypeError: undefined is not a constructor (evaluating 'require('system').create()')
phantomjs://code/cap_screen.js:10 in global code
这是我的代码:
entries_controller
def create
@entry = Entry.new(entry_params)
@entry.image = cap_screen
if @entry.save
redirect_to root_path
else
render('index')
end
end
private
PATH_TO_PHANTOM_SCRIPT = Rails.root.join('app', 'assets', 'javascripts', 'cap_screen.js')
def cap_screen
Dir.chdir(Rails.root.join('public', 'images'))
system "phantomjs #{PATH_TO_PHANTOM_SCRIPT} #{params['entry_url']} # {params['entry_url']}.png"
end
def entry_params
params.require(:entry).permit(:title, :url)
end
在我的cap_screen.js文件中,我的IDE给了我警告"未解决的变量或类型幻像"。
思想?
答案 0 :(得分:1)
对于遇到TypeError: undefined is not a constructor
问题的人,对于我的问题,我不小心有了这句话:
var system = require('system').create();
什么时候应该
var system = require('system')
答案 1 :(得分:0)
如果它在Spec文件中,请确保在提供程序类中具有函数create()(在下面的示例中,MockService需要该函数)。
{
provide: .....Service,
useClass: MockService
}
export class MockService {
create() {
// your code for test
}
constructor() { }
}
答案 2 :(得分:0)
我有同样的错误,但是对于不同的字符串函数。
TypeError:undefined不是构造函数(评估' inputValue.replace(/ [^ 0-9a-zA-Z,] / g,'')&#39 ;)强>
我的解决方法是添加" .toString()"在变量和" .replace"之间方法调用。我已将下面的代码包含在内,以供进一步参考。
(function () {
'use strict';
angular
.module('mo.pages.global-search.directives')
.directive('extentionListValidate', restrictTextfieldToAlphaNumericList);
function restrictTextfieldToAlphaNumericList() {
return {
require: 'ngModel',
link: function (scope, element, attrs, modelCtrl) {
modelCtrl.$parsers.push(function (inputValue) {
var transformedInput = inputValue ? inputValue.toString().replace(/[^0-9a-zA-Z,]/g, '') : null;
if (transformedInput != inputValue) {
modelCtrl.$setViewValue(transformedInput);
modelCtrl.$render();
}
return transformedInput;
});
}
};
}
})();