Questions tagged «action»

动作是程序对程序检测到的可能由程序事件处理的事件的响应。



9
android从图库中选择图像
我想从图库中创建图片选择器。我使用代码 intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(intent, TFRequestCodes.GALLERY); 我的问题是在此活动中显示了视频文件。有没有办法过滤显示的文件,以便在此活动中不显示视频文件?
196 android  gallery  action 

13
从控制器内部获取控制器和动作名称?
对于我们的Web应用程序,我需要保存获取和显示的项目的顺序,具体取决于视图-确切地说,是生成视图的控制器和操作(当然还有用户ID,但这不是重点)。 我认为不仅要在每个控制器动作中自己给出一个标识符(以便将其用于与视图有关的数据库输出排序),我还认为,从其获取的控制器和动作方法中自动创建该标识符会更安全,更轻松。从。 如何从控制器的action方法中获取控制器的名称和动作?还是我需要反思?我想这很容易,谢谢您!

5
JavaScript:如何根据选择更改表单动作属性值?
我正在尝试根据下拉菜单中的选定值更改表单操作。 基本上,HTML看起来像这样: <form class="search-form" id="search-form" method="post" accept-charset="UTF-8" action="/search/user"> <select id="selectsearch" class="form-select" name="selectsearch"> <option value="people">Search people</option> <option value="node">Search content</option> </select> <label>Enter your keywords: </label> <input type="text" class="form-text" value="" size="40" id="edit-keys" name="keys" maxlength="255" /> <input type="submit" class="form-submit" value="Search" id="edit-submit" name="search"/> </form> 如果选择“人员”(默认情况下为默认值),则该操作应为“ / search / user”,如果选择了内容,则该操作应为“ / search / content” 我还在四处搜寻,但是还没有找到如何做的方法。
151 jquery  forms  dynamic  action 

9
单击动作后如何关闭通知
从API级别16(Jelly Bean)开始,可以通过以下方式向通知添加操作 builder.addAction(iconId, title, intent); 但是,当我在通知中添加操作并按下该操作时,该通知将不会被取消。单击通知本身时,可以通过以下方式将其关闭 notification.flags = Notification.FLAG_AUTO_CANCEL; 要么 builder.setAutoCancel(true); 但这显然与通知相关联的动作无关。 有什么提示吗?还是这还不属于API?我什么都没找到。

9
C#中Action委托的使用
已关闭。这个问题需要更加集中。它当前不接受答案。 想改善这个问题吗?更新问题,使其仅通过编辑此帖子来关注一个问题。 2年前关闭。 改善这个问题 我曾与C#中的“行动代表”一起工作,希望对他们有更多的了解,并思考他们可能在什么地方有用。 有人使用过动作代表吗,为什么?还是可以举一些可能有用的例子?
132 c#  lambda  delegates  action 

10
动作图片MVC3剃刀
在MVC3中使用Razor用图像替换链接的最佳方法是什么。我现在只是这样做: <a href="@Url.Action("Edit", new { id=MyId })"><img src="../../Content/Images/Image.bmp", alt="Edit" /></a> 有没有更好的办法?

5
Web API路由-api / {controller} / {action} / {id}“功能异常” api / {controller} / {id}
我在Global.asax中具有默认路由: RouteTable.Routes.MapHttpRoute( name: "DefaultApi", routeTemplate: "api/{controller}/{id}", defaults: new { id = System.Web.Http.RouteParameter.Optional } ); 我希望能够定位特定的功能,所以我创建了另一条路线: RouteTable.Routes.MapHttpRoute( name: "WithActionApi", routeTemplate: "api/{controller}/{action}/{id}", defaults: new { id = System.Web.Http.RouteParameter.Optional } ); 因此,在我的控制器中,我有: public string Get(int id) { return "object of id id"; } [HttpGet] public IEnumerable<string> ByCategoryId(int id) { return new string[] { …

5
如何在Swift中为UIBarButtonItem设置操作
如何在Swift中设置自定义UIBarButtonItem的操作? 以下代码将按钮成功放置在导航栏中: var b = UIBarButtonItem(title: "Continue", style: .Plain, target: self, action:nil) self.navigationItem.rightBarButtonItem = b 现在,我想func sayHello() { println("Hello") }在触摸按钮时打电话。到目前为止,我的努力: var b = UIBarButtonItem(title: "Continue", style: .Plain, target: self, action:sayHello:) // also with `sayHello` `sayHello()`, and `sayHello():` 和.. var b = UIBarButtonItem(title: "Continue", style: .Plain, target: self, action:@selector(sayHello:)) // also …


3
如何在Action中传递参数?
private void Include(IList<string> includes, Action action) { if (includes != null) { foreach (var include in includes) action(<add include here>); } } 我想这样称呼 this.Include(includes, _context.Cars.Include(<NEED TO PASS each include to here>)); 想法是将每个包含传递给方法。
75 c#  .net  action 

8
手动创建委托与使用Action / Func委托
今天,我正在考虑声明以下内容: private delegate double ChangeListAction(string param1, int number); 但是为什么不使用这个: private Func<string, int, double> ChangeListAction; 或者如果ChangeListAction没有返回值,我可以使用: private Action<string,int> ChangeListAction; 那么用delegate关键字声明委托的好处在哪里? 是因为.NET 1.1,随着.NET 2.0的出现Action<T>,还是随着.NET 3.5的出现Func<T>?
71 c#  delegates  action  func 

9
设计应用程序时如何使用Func <>和Action <>?
我可以找到的有关Func &lt;&gt;和Action &lt;&gt;的所有示例都很简单,如下所示,您将看到它们在技术上如何工作,但我希望看到它们用于解决以前无法解决或可能解决的问题的示例中仅以更复杂的方式来解决,即我知道它们的工作原理,并且可以看到它们的简洁和强大,因此我想从更大的意义上理解它们,以解决它们所解决的各种问题以及如何在解决方案中使用它们。应用程序设计。 您以什么方式(模式)使用Func &lt;&gt;和Action &lt;&gt;解决实际问题? using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace TestFunc8282 { class Program { static void Main(string[] args) { //func with delegate Func&lt;string, string&gt; convert = delegate(string s) { return s.ToUpper(); }; //func with lambda Func&lt;string, string&gt; convert2 = s =&gt; s.Substring(3, 10); //action …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.