小编Tar*_*fih的帖子

使用Jquery调用带有参数的php函数

我有一个php文件func.php,我定义了许多函数,让我们说:

<? php 
function func1($data){
return $data+1;
}
?>
Run Code Online (Sandbox Code Playgroud)

我想打电话给function func1使用ajax.谢谢您的帮助

php ajax jquery

16
推荐指数
2
解决办法
6万
查看次数

Laravel:方法[show]不存在

当尝试访问此URL"users/login"时,我收到了该错误,这是我的代码:

查看users/login.blade.php:

<head>Sign in : </head>
<body>
{{ HTML::ul($errors->all()) }}
<?php echo Form::open(array('url' => 'users')); 

echo '<div class="form-group">';
    echo Form::label('username', 'User Name');
    echo Form::text('ausername', null, array('class' => 'form-control'));
echo '</div>';

echo '<div class="form-group">';
    echo Form::label('Password', 'Password');
    echo Form::password('apassword', null, array('class' => 'form-control'));
echo '</div>';

echo Form::submit('Sign in', array('class' => 'btn btn-primary'));

echo Form::close();
?>
</body>
Run Code Online (Sandbox Code Playgroud)

Controller Usercontroller.php

<?php

class UserController extends BaseController {


    public function index()
    {
        $users = User::all();
        return View::make('users.index')
            ->with('users', $users);
    }


    public function create()
    {
        return …
Run Code Online (Sandbox Code Playgroud)

php laravel laravel-4

16
推荐指数
2
解决办法
5万
查看次数

无法设置contextmenustrip的位置?

我正试图contextmenustrip在我右键单击鼠标的地方打开一个,但它总是显示在屏幕的左上角.

这是我使用的代码:

private void dataGridView1_RowHeaderMouseClick(object sender, DataGridViewCellMouseEventArgs e)
{
    if (e.Button == MouseButtons.Right)
    {
        contextMenuStrip1.Show(new Point(e.X,e.Y));
        doss.getdossier(connection.conn, Convert.ToInt32(dataGridView1.Rows[e.RowIndex].Cells[0].Value));
    }
}
Run Code Online (Sandbox Code Playgroud)

c# contextmenustrip winforms

9
推荐指数
1
解决办法
8679
查看次数

蓝牙4.0与较旧的蓝牙

我正在尝试使用蓝牙4.0模块实现应用程序,我想知道如果将此应用程序与包含简单蓝牙2.1 EDR模块的Iphone 3GS一起使用,将使我能够利用4.0模块中的低能耗.谢谢您的回答

iphone bluetooth core-bluetooth bluetooth-lowenergy

7
推荐指数
2
解决办法
2万
查看次数

Laravel:BadMethodCallException方法[find]不存在

当尝试使用模型对象User从数据库中提取某些值时,我收到以下错误: BadMethodCallException Method [find] does not exist

这是我的文件:模型用户

<?php

use Illuminate\Auth\UserInterface;
use Illuminate\Auth\Reminders\RemindableInterface;

class User extends Eloquent implements UserInterface, RemindableInterface {

    /**
     * The database table used by the model.
     *
     * @var string
     */
    protected $table = 'users';

    /**
     * The attributes excluded from the model's JSON form.
     *
     * @var array
     */
    protected $hidden = array('password');

        public function projects()
        {
            return $this->belongsToMany('Project');
        }

        public function trys()
        {
            return $this->hasMany('Try');
        }

    /**
     * Get the unique identifier for the …
Run Code Online (Sandbox Code Playgroud)

php laravel laravel-4

5
推荐指数
1
解决办法
5万
查看次数

从Unity中的资源加载材料

在我的Assets文件夹中,我有一个名为Material的文件夹,其中我存储了所有需要的材料,Material文件夹中的一个材料Night_Sky,我想在游戏的某个时刻替换day_sky并设置Night_sky为我的默认Skybox.我尝试了很多代码,所有代码都返回null对象,例如:

night = Resources.Load("Material", typeof(Material)) as Material;
Run Code Online (Sandbox Code Playgroud)

要么

night = Resources.Load("Material/Night_Sky.mat", typeof(Material)) as Material;
Run Code Online (Sandbox Code Playgroud)

如何加载我的Night_Sky素材,或者如果有更简单的方法来切换我的天空盒以night_sky感谢您分享它

assets unity-game-engine material unityscript

5
推荐指数
1
解决办法
8526
查看次数

Google应用引擎:对象没有属性ToMessage

我正在尝试实现一个检查登录用户是否在数据存储上的服务,如果是,则返回True,否则返回False.这是我正在使用的代码:

import endpoints

from google.appengine.ext import ndb
from protorpc import remote
from protorpc import messages

from endpoints_proto_datastore.ndb import EndpointsModel
from google.appengine.api import users

class AuthRes(messages.Message):
    message = messages.StringField(1)

class UserModel(EndpointsModel):
    user = ndb.UserProperty()

@endpoints.api(name='myapi', version='v1', description='My Little API')
class MyApi(remote.Service):

    @UserModel.method(path='myuser', http_method='GET', name='myuser.check')
    def UserCheck(self, cls):
        user = users.get_current_user()
        if user:
            myuser = cls.query().filter(cls.user.user_id() == user.user_id()).get()
            if not myuser:
                  return AuthRes(message="False")
            else:
                  return AuthRes(message="True")
        else:
            return AuthRes(message="False")


application = endpoints.api_server([MyApi], restricted=False)
Run Code Online (Sandbox Code Playgroud)

我总是得到 'AuthRes' object has no attribute 'ToMessage'

google-app-engine python-2.7 google-cloud-endpoints

5
推荐指数
1
解决办法
122
查看次数

Laravel:在模型表中添加新行

我定义了一个用户模型,我正在尝试使用表单在我的数据库中添加一个新用户,最好和最快的方法是什么,我已经阅读了一些关于模型表单绑定但我认为它只是用于更新不是为了添加新行.

我是Laravel的新手,找不到一些好的教程,我必须认识到Laravel文档真的很差,所以欢迎任何链接到一些好的和解释良好的教程.谢谢

php form-submit laravel laravel-4

2
推荐指数
1
解决办法
2万
查看次数