简体   繁体   English

扳机<input type="file">以编程方式选择带有角度的文件

[英]Trigger <input type="file"> file select with angular programatically

Im using ngImgCrop as can be seen in this JSFiddle .我正在使用 ngImgCrop,可以在这个JSFiddle 中看到。
What I try to achieve is that the image selection box will open automatically when i show(using ng-if) the:我试图实现的是,当我显示(使用 ng-if)时,图像选择框将自动打开:

<div ng-if="showImageSelector">
 <div>Select an image file: <input type="file" id="fileInput" /></div>
 <div class="cropArea">
  <img-crop image="myImage" result-image="myCroppedImage"></img-crop>
 </div>
</div>

that is: i want to programatically open the image selection window, without even showing the user the:也就是说:我想以编程方式打开图像选择窗口,甚至不向用户显示:

<input type="file" id="fileInput" />

Iv'e tried put in the controller several variations of click event of the input, but none of them worked, so far iv'e tried: 1.我尝试在控制器中放入输入的点击事件的几种变体,但它们都不起作用,到目前为止我尝试过:1。

$timeout(function() {
    angular.element('#fileInput').triggerHandler('click');
  }, 0);

2. 2.

angular.element(document).ready(function () {
    angular.element('#fileInput').triggerHandler('click');
  });

3. 3.

setTimeout(function(){
    angular.element('#fileInput').triggerHandler('click');
  }, 1000);

4. 4.

setTimeout(function(){
    document.getElementById('fileInput').click();
  }, 1000);

For trigger the file selector open programmatically, the answer is yes.对于以编程方式打开文件选择器的触发,答案是肯定的。

But you need to make sure this event was fired by THE USER.但是您需要确保此事件是由用户触发的。

For example, you have a button there, you attach the click event on it.例如,你有一个按钮,你在上面附加了点击事件。 After the user click this button , inside the event handler, you can trigger by javascript code eg, document.getElementById('fileInput').click() .用户单击此按钮后,在事件处理程序中,您可以通过 javascript 代码触发,例如document.getElementById('fileInput').click() This should work.这应该有效。

However, if you want to simply run several lines of javascript code to open a file selector without user's click , that's not possible, because that violate the security policy.但是,如果您想简单地运行几行 javascript 代码来打开文件选择器而无需用户单击,这是不可能的,因为这违反了安全策略。

So I added some code to your sample ,所以我在你的示例中添加了一些代码

html, html,

<button ng-click='open()'>Open selector</button>

javascript, javascript,

$scope.open = function() {
     document.getElementById('fileInput').click(); //this work
};

Hope this would solve your problem.希望这能解决您的问题。 : ) :)

Ended up wrapping the ngImgCrop with my directive, in it iv'e placed that:最终用我的指令包装了 ngImgCrop,在其中放置了:

$timeout(function () {
      angular.element(document.querySelector('#fileInput')).click();
      $log.debug("poped it");
    }, 250);

in the link function.在链接功能中。 Aside the real element i show for the img selector, iv'e placed this at my index.html:除了我为 img 选择器显示的真实元素之外,我把它放在我的 index.html 中:

<div ng-show="false">
  <my-image-select cropped-image="groupDetails.newPic" return-func="groupDetails.imageSelectFinish"></my-image-select>
</div>

and it works.它有效。 without the extra invisible my-image-select in index.html, the file chooser only auto open from the second attempt.如果 index.html 中没有额外的隐形 my-image-select,文件选择器只会在第二次尝试时自动打开。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM