我是新來的咖啡標記。我已經在js
中編寫了代碼,現在我想將它轉換爲coffeescript
,我已經嘗試了很多,我也參考了This。但它不會幫助我。CoffeeScript功能問題
這裏是我的代碼,
this.$scope.callTestFuntion = function(){
this.blockingObject.render(function(dataURL){
console.log('via render');
console.log(dataURL.length);
});
}
this.$scope.blockingObject.callback=function(dataURL){
console.log('via function');
console.log(dataURL.length);
this.myCroppedImage = dataURL;
}
var handleFileSelect=function(evt) {
console.log('here');
var file=evt.currentTarget.files[0];
var reader = new FileReader();
reader.onload = function (evt) {
this.$scope.$apply(function($scope){
this.$scope.myImage=evt.target.result;
});
};
reader.readAsDataURL(file);
};
我想把它轉換成在CoffeeScript的語法。請幫幫我。
感謝
爲什麼你要將JS轉換爲coffescript,最終/不可避免地會轉換回JS? – Thomas